Skip to content

Commit 66bf033

Browse files
committed
pc9801: force single width chars in pcg area
1 parent 8beed35 commit 66bf033

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/mame/nec/pc9801_v.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ void pc9801_state::draw_text(bitmap_rgb32 &bitmap, uint32_t addr, int y, int wd,
115115
tile <<= 8;
116116
tile |= (knj_tile & 0x7f);
117117
kanji_sel = 1;
118-
if((tile & 0x7c00) == 0x0800) // 8x16 charset selector
118+
if(((tile & 0x7c00) == 0x0800) || ((tile & 0xfe00) == 0x5600)) // 8x16 charset selector
119119
x_step = 1;
120120
else
121121
x_step = 2;

0 commit comments

Comments
 (0)