From 5058fabf1e01b29e3113d31097f0e60596a4a7d9 Mon Sep 17 00:00:00 2001 From: Michael Karcher Date: Fri, 18 May 2007 00:01:05 +0200 Subject: [PATCH] user32: Reduce the PeekMessage timeout to zero for USER16_AlertableWait. --- dlls/user32/msg16.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/user32/msg16.c b/dlls/user32/msg16.c index 3193a605e08..421f3389b37 100644 --- a/dlls/user32/msg16.c +++ b/dlls/user32/msg16.c @@ -164,7 +164,7 @@ BOOL16 WINAPI PeekMessage32_16( MSG32_16 *msg16, HWND16 hwnd16, HWND hwnd = WIN_Handle32( hwnd16 ); if(USER16_AlertableWait) - MsgWaitForMultipleObjectsEx( 0, NULL, 1, 0, MWMO_ALERTABLE ); + MsgWaitForMultipleObjectsEx( 0, NULL, 0, 0, MWMO_ALERTABLE ); if (!PeekMessageA( &msg, hwnd, first, last, flags )) return FALSE; msg16->msg.time = msg.time; -- 2.11.4.GIT