From d68ee12d1bc45e80ed4911206dffcaa7b40231c2 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Wed, 29 May 2002 08:37:06 +0000 Subject: shorten the sleep for blocking key-gets to make it behave better git-svn-id: svn://svn.rockbox.org/rockbox/trunk@776 a1c6a512-1295-4272-9138-f99709370657 --- uisimulator/x11/button-x11.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uisimulator/x11/button-x11.c b/uisimulator/x11/button-x11.c index e41b720d6f..53639a37cd 100644 --- a/uisimulator/x11/button-x11.c +++ b/uisimulator/x11/button-x11.c @@ -109,7 +109,7 @@ int button_get(bool block) do { bits = get_raw_button(); if(block && !bits) - x11_sleep(HZ/4); + x11_sleep(HZ/10); else break; } while(1); -- cgit v1.2.3