From a124114bce9d6505dcf949eb1a463f94640c0dcf Mon Sep 17 00:00:00 2001 From: Bart House Date: Sat, 23 Jan 2021 12:04:16 -0800 Subject: [PATCH] NetHackW: fix rendering of animations Animations render by changing map state and calling delay. When we delay, we must ensure map windoow has been updated to show latest state before we delay. --- win/win32/mswproc.c | 1 + 1 file changed, 1 insertion(+) diff --git a/win/win32/mswproc.c b/win/win32/mswproc.c index 4e675671f..141a4e96f 100644 --- a/win/win32/mswproc.c +++ b/win/win32/mswproc.c @@ -1852,6 +1852,7 @@ void mswin_delay_output() { logDebug("mswin_delay_output()\n"); + mswin_map_update(mswin_hwnd_from_winid(WIN_MAP)); Sleep(50); }