diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2002-05-29 08:37:06 +0000 |
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2002-05-29 08:37:06 +0000 |
| commit | d68ee12d1bc45e80ed4911206dffcaa7b40231c2 (patch) | |
| tree | e9273aa0246073be2dd80d42fe47cf0714ca8b78 | |
| parent | cc78063f7063d7fb4f7c8a781d1b1fcfd0ae4d14 (diff) | |
| download | rockbox-d68ee12d1bc45e80ed4911206dffcaa7b40231c2.zip rockbox-d68ee12d1bc45e80ed4911206dffcaa7b40231c2.tar.gz rockbox-d68ee12d1bc45e80ed4911206dffcaa7b40231c2.tar.bz2 rockbox-d68ee12d1bc45e80ed4911206dffcaa7b40231c2.tar.xz | |
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
| -rw-r--r-- | uisimulator/x11/button-x11.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/uisimulator/x11/button-x11.c b/uisimulator/x11/button-x11.c index e41b720..53639a3 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); |