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

This commit is contained in:
Yoshihiro Takahashi 2004-01-18 04:10:45 +00:00
parent 23b186d324
commit 2b0292a5ae
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=124647

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;