• R/O
  • HTTP
  • SSH
  • HTTPS

hengband: Commit

変愚蛮怒のメインリポジトリです


Commit MetaInfo

Revision95c6270b0f0eafca0b635191923672c31a94ca7b (tree)
Time2004-03-06 08:30:03
Authornothere <nothere@0568...>
Commiternothere

Log Message

2chのスレッド "ローグ系のRPG地下29階" の248氏のパッチを取り込み, タイ
ルなしのbigtileモードで表示が崩れる場合があるバグを修正.

Change Summary

Incremental Difference

--- a/src/z-term.c
+++ b/src/z-term.c
@@ -542,7 +542,8 @@ void Term_queue_char(int x, int y, byte a, char c, byte ta, char tc)
542542 if (x < Term->x1[y]) Term->x1[y] = x;
543543 if (x > Term->x2[y]) Term->x2[y] = x;
544544
545- if ((scrn->a[y][x] & AF_BIGTILE2) == AF_BIGTILE2)
545+ if (((scrn->a[y][x] & AF_BIGTILE2) == AF_BIGTILE2) ||
546+ (scrn->a[y][x] & AF_KANJI2))
546547 if ((x - 1) < Term->x1[y]) Term->x1[y]--;
547548 }
548549
Show on old repository browser