diff options
| author | Linus Nielsen Feltzing <linus@haxx.se> | 2002-07-27 21:02:36 +0000 |
|---|---|---|
| committer | Linus Nielsen Feltzing <linus@haxx.se> | 2002-07-27 21:02:36 +0000 |
| commit | ce35495aec182530cae9085ecb3a0545f9692253 (patch) | |
| tree | 523caf8ca66d2522fc0486eef8ce4cfaa5fa6947 | |
| parent | f140b200ba4610b7fd33c2acf0c8987868a24cd6 (diff) | |
| download | rockbox-ce35495aec182530cae9085ecb3a0545f9692253.zip rockbox-ce35495aec182530cae9085ecb3a0545f9692253.tar.gz rockbox-ce35495aec182530cae9085ecb3a0545f9692253.tar.bz2 rockbox-ce35495aec182530cae9085ecb3a0545f9692253.tar.xz | |
Forgot to delete obsolete code
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1471 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | apps/credits.c | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/apps/credits.c b/apps/credits.c index 458efd5..a37658b 100644 --- a/apps/credits.c +++ b/apps/credits.c @@ -96,31 +96,4 @@ void roll_credits(void) } } return; - for ( i=0; i<sizeof(credits)/sizeof(char*); i++ ) { -#ifdef HAVE_LCD_BITMAP - lcd_putsxy(0, 0, " [Credits]",0); -#endif - lcd_puts(0, line, credits[i]); - line++; - if ( line == MAX_LINES ) { - lcd_update(); - /* abort on keypress */ - for ( j=0;j<10;j++ ) { - sleep(DISPLAY_TIME/10); - if (button_get(false)) - return; - } - lcd_clear_display(); - line=0; - } - } - if ( line != MAX_LINES ) { - lcd_update(); - /* abort on keypress */ - for ( j=0;j<10;j++ ) { - sleep(DISPLAY_TIME/10); - if (button_get(false)) - return; - } - } } |