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
This commit is contained in:
Daniel Stenberg 2002-05-29 08:37:06 +00:00
parent cc78063f70
commit d68ee12d1b

View file

@ -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);