Added 8x16 kanji selector, used by Bible Master 2

This commit is contained in:
Angelo Salese 2012-12-16 15:51:20 +00:00
parent 90151ee3b5
commit 3e2520bd6c

View File

@ -760,7 +760,10 @@ static UPD7220_DRAW_TEXT_LINE( hgdc_draw_text )
tile <<= 8; tile <<= 8;
tile |= (knj_tile & 0x7f); tile |= (knj_tile & 0x7f);
kanji_sel = 1; kanji_sel = 1;
x_step = 2; if((tile & 0x7c00) == 0x0800) // 8x16 charset selector
x_step = 1;
else
x_step = 2;
// kanji_lr = 0; // kanji_lr = 0;
} }
else else