OSDN Git Service

2倍幅モード(タイルが有効かどうかは関係ない)かつ軌道表示有効時にシンボ
authornothere <nothere@0568b783-4c39-0410-ac80-bf13821ea2a2>
Tue, 26 Aug 2003 05:27:52 +0000 (05:27 +0000)
committernothere <nothere@0568b783-4c39-0410-ac80-bf13821ea2a2>
Tue, 26 Aug 2003 05:27:52 +0000 (05:27 +0000)
ル'*'で表示されたモンスターを軌道に入れると文字化けが起きていたバグを
修正.

src/cave.c

index 4cb5abb..bb2e243 100644 (file)
@@ -2150,10 +2150,10 @@ void prt_path(int y, int x)
                        /* Hack -- Queue it */
 #ifdef USE_TRANSPARENCY
                        Term_queue_char(panel_col_of(nx), ny-panel_row_prt, a, c, ta, tc);
-                       if (use_bigtile) Term_queue_char(panel_col_of(nx)+1, ny-panel_row_prt, a, c2, 0, 0);
+                       if (use_bigtile) Term_queue_char(panel_col_of(nx)+1, ny-panel_row_prt, a2, c2, 0, 0);
 #else
                        Term_queue_char(panel_col_of(nx), ny-panel_row_prt, a, c);
-                       if (use_bigtile) Term_queue_char(panel_col_of(nx)+1, ny-panel_row_prt, a, c2);
+                       if (use_bigtile) Term_queue_char(panel_col_of(nx)+1, ny-panel_row_prt, a2, c2);
 #endif
                }