From 66bf033848ed54bf28ddf0d55fbd59010e3880da Mon Sep 17 00:00:00 2001 From: cracyc Date: Mon, 30 Sep 2024 10:51:25 -0500 Subject: pc9801: force single width chars in pcg area --- src/mame/nec/pc9801_v.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mame/nec/pc9801_v.cpp b/src/mame/nec/pc9801_v.cpp index 0be1391f2e3..7d64953d628 100644 --- a/src/mame/nec/pc9801_v.cpp +++ b/src/mame/nec/pc9801_v.cpp @@ -115,7 +115,7 @@ void pc9801_state::draw_text(bitmap_rgb32 &bitmap, uint32_t addr, int y, int wd, tile <<= 8; tile |= (knj_tile & 0x7f); kanji_sel = 1; - if((tile & 0x7c00) == 0x0800) // 8x16 charset selector + if(((tile & 0x7c00) == 0x0800) || ((tile & 0xfe00) == 0x5600)) // 8x16 charset selector x_step = 1; else x_step = 2; -- cgit v1.2.3