...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
This commit is contained in:
Shachar Liberman 2006-08-10 20:56:09 +00:00
parent 070566581b
commit 585510a6c3
2 changed files with 5 additions and 3 deletions

View file

@ -48,11 +48,12 @@ PLUGIN_HEADER
#define STAR_BLOCK 'x'
/* sleep time between two frames */
#if (LCD_HEIGHT == 240) && (LCD_WIDTH == 320)
/* iPod 5G LCD is *slow* */
#if (LCD_HEIGHT == 240) && (LCD_WIDTH == 320) /* iPod 5G LCD is *slow* */
#define STAR_SLEEP ;
#elif (LCD_HEIGHT == 128) && (LCD_WIDTH == 160)
#define STAR_SLEEP rb->sleep(0);
#else
#define STAR_SLEEP rb->sleep(0.2);
#define STAR_SLEEP rb->sleep(1);
#endif
/* value of ball and block control */

View file

@ -222,3 +222,4 @@ Emanuel Zephir
Alexander Levin
Barry Wardell
Lars van de Klomp
philippe Miossec