summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShachar Liberman <lshachar@hotmail.com>2006-08-10 20:56:09 +0000
committerShachar Liberman <lshachar@hotmail.com>2006-08-10 20:56:09 +0000
commit585510a6c31d2e11d89ca5e76ed1d713e9811028 (patch)
tree99b62eb6d5ca2c2df9926d5d0752209ed7a2b9b1
parent070566581b53df1e34b326b3107556121185832e (diff)
downloadrockbox-585510a6c31d2e11d89ca5e76ed1d713e9811028.tar.gz
rockbox-585510a6c31d2e11d89ca5e76ed1d713e9811028.zip
...nither sleep(0.2). thanks FS#5509 for letting me believe it is
legit, and Philippe Miossec for his work. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10516 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/plugins/star.c7
-rw-r--r--docs/CREDITS1
2 files changed, 5 insertions, 3 deletions
diff --git a/apps/plugins/star.c b/apps/plugins/star.c
index e0e15e8151..956b0debab 100644
--- a/apps/plugins/star.c
+++ b/apps/plugins/star.c
@@ -48,11 +48,12 @@ PLUGIN_HEADER
48#define STAR_BLOCK 'x' 48#define STAR_BLOCK 'x'
49 49
50/* sleep time between two frames */ 50/* sleep time between two frames */
51#if (LCD_HEIGHT == 240) && (LCD_WIDTH == 320) 51#if (LCD_HEIGHT == 240) && (LCD_WIDTH == 320) /* iPod 5G LCD is *slow* */
52/* iPod 5G LCD is *slow* */
53#define STAR_SLEEP ; 52#define STAR_SLEEP ;
53#elif (LCD_HEIGHT == 128) && (LCD_WIDTH == 160)
54#define STAR_SLEEP rb->sleep(0);
54#else 55#else
55#define STAR_SLEEP rb->sleep(0.2); 56#define STAR_SLEEP rb->sleep(1);
56#endif 57#endif
57 58
58/* value of ball and block control */ 59/* value of ball and block control */
diff --git a/docs/CREDITS b/docs/CREDITS
index dda7047933..f666efe3c1 100644
--- a/docs/CREDITS
+++ b/docs/CREDITS
@@ -222,3 +222,4 @@ Emanuel Zephir
222Alexander Levin 222Alexander Levin
223Barry Wardell 223Barry Wardell
224Lars van de Klomp 224Lars van de Klomp
225philippe Miossec