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:
parent
bd87150cd2
commit
eae8225c4c
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user