Fix character code of backslash. PC98 should use 0xfc instead of 0x5c.

Submitted by:	IMAI Takeshi <take-i@ceres.dti.ne.jp>
This commit is contained in:
KATO Takenori 1999-03-04 10:44:01 +00:00
parent bd87150cd2
commit eae8225c4c

View File

@ -26,7 +26,7 @@
*
* From Id: probe_keyboard.c,v 1.13 1997/06/09 05:10:55 bde Exp
*
* $Id: vidconsole.c,v 1.11 1999/01/04 18:45:08 peter Exp $
* $Id: vidconsole.c,v 1.1 1999/02/03 08:39:09 kato Exp $
*/
#include <stand.h>
@ -358,7 +358,7 @@ void
write_char(int c, int fg, int bg)
{
#ifdef PC98
*crtat = c;
*crtat = (c == 0x5c ? 0xfc : c);
*(crtat + 0x1000) = at2pc98(fg, bg);
#else
v86.ctl=0;