fix dolook() on Windows console
usemap boolean wasn't being set to TRUE when it should have been
This commit is contained in:
@@ -1493,9 +1493,9 @@ console_g_putch(int in_ch)
|
|||||||
#else /* VIRTUAL_TERMINAL_SEQUENCES */
|
#else /* VIRTUAL_TERMINAL_SEQUENCES */
|
||||||
ccount = 0;
|
ccount = 0;
|
||||||
WCHAR wch[2];
|
WCHAR wch[2];
|
||||||
boolean usemap = (in_ch >= 0 && in_ch < SIZE(console.cpMap));
|
|
||||||
#endif /* VIRTUAL_TERMINAL_SEQUENCES */
|
|
||||||
ch = (unsigned char) in_ch;
|
ch = (unsigned char) in_ch;
|
||||||
|
boolean usemap = (ch >= 0 && ch < SIZE(console.cpMap));
|
||||||
|
#endif /* VIRTUAL_TERMINAL_SEQUENCES */
|
||||||
|
|
||||||
set_console_cursor(ttyDisplay->curx, ttyDisplay->cury);
|
set_console_cursor(ttyDisplay->curx, ttyDisplay->cury);
|
||||||
#ifndef VIRTUAL_TERMINAL_SEQUENCES
|
#ifndef VIRTUAL_TERMINAL_SEQUENCES
|
||||||
|
|||||||
Reference in New Issue
Block a user