From 70d9c625738a8c368e6276be3bed8baab9103083 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20M=C3=BCller?= Date: Fri, 2 May 2014 20:46:19 +0200 Subject: user32: Decrease minimum SetTimer interval to 5 ms --- dlls/user32/message.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/user32/message.c b/dlls/user32/message.c index be5d995..a371f72 100644 --- a/dlls/user32/message.c +++ b/dlls/user32/message.c @@ -4439,7 +4439,7 @@ UINT_PTR WINAPI SetTimer( HWND hwnd, UINT_PTR id, UINT timeout, TIMERPROC proc ) if (proc) winproc = WINPROC_AllocProc( (WNDPROC)proc, FALSE ); - timeout = min( max( USER_TIMER_MINIMUM, timeout ), USER_TIMER_MAXIMUM ); + timeout = min( max( 5, timeout ), USER_TIMER_MAXIMUM ); SERVER_START_REQ( set_win_timer ) { -- 1.8.3.2