From 2462a558dfcc78b6ebbd50bf2725d587c8d7d8ae Mon Sep 17 00:00:00 2001 From: Aleksandar Andrejevic Date: Sat, 19 Oct 2013 00:04:11 +0000 Subject: [PATCH] [NTVDM] Add a hack to fix screen updates while waiting for a keypress. svn path=/branches/ntvdm/; revision=60697 --- subsystems/ntvdm/bios.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/subsystems/ntvdm/bios.c b/subsystems/ntvdm/bios.c index 6acf424c1a5..0cb767de44f 100644 --- a/subsystems/ntvdm/bios.c +++ b/subsystems/ntvdm/bios.c @@ -603,6 +603,8 @@ WORD BiosGetCharacter(VOID) } else { + VgaRefreshDisplay(); // HACK: Waiting here blocks the emulator!!! + while (TRUE) { /* Wait for a console event */ -- 2.17.1