From 9747ea4132e537ae59cce75269a98be870eaaf7e Mon Sep 17 00:00:00 2001 From: deuce <> Date: Mon, 3 Nov 2003 05:15:26 +0000 Subject: [PATCH] Lower kbwait timeout to 50 loops... this "fixes" umonitor though it may increase CPU usage, screen updates. --- src/uifc/uifc32.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/uifc/uifc32.c b/src/uifc/uifc32.c index 93c924deb8..d24b7744f0 100644 --- a/src/uifc/uifc32.c +++ b/src/uifc/uifc32.c @@ -136,7 +136,7 @@ static void reset_dynamic(void) { int kbwait(void) { int timeout=0; - while(timeout++<500) { + while(timeout++<50) { if(kbhit()) return(TRUE); mswait(1); -- GitLab