Fix to support KANA and graphics characters which code are over 0x80.

This commit is contained in:
nyan 2004-01-18 04:10:45 +00:00
parent 12eb36a03f
commit ab57384aff

View File

@ -422,7 +422,7 @@ write_char(int c, int fgcol, int bgcol)
{
#ifdef PC98
*crtat = (c == 0x5c ? 0xfc : c);
*crtat = (c == 0x5c ? 0xfc : (c & 0xff));
*(crtat + 0x1000) = at2pc98(fgcol, bgcol);
#else
v86.ctl = 0;