summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2002-07-27 21:02:36 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2002-07-27 21:02:36 +0000
commitce35495aec182530cae9085ecb3a0545f9692253 (patch)
tree523caf8ca66d2522fc0486eef8ce4cfaa5fa6947
parentf140b200ba4610b7fd33c2acf0c8987868a24cd6 (diff)
downloadrockbox-ce35495aec182530cae9085ecb3a0545f9692253.tar.gz
rockbox-ce35495aec182530cae9085ecb3a0545f9692253.zip
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.c27
1 files changed, 0 insertions, 27 deletions
diff --git a/apps/credits.c b/apps/credits.c
index 458efd5558..a37658be8b 100644
--- a/apps/credits.c
+++ b/apps/credits.c
@@ -96,31 +96,4 @@ void roll_credits(void)
96 } 96 }
97 } 97 }
98 return; 98 return;
99 for ( i=0; i<sizeof(credits)/sizeof(char*); i++ ) {
100#ifdef HAVE_LCD_BITMAP
101 lcd_putsxy(0, 0, " [Credits]",0);
102#endif
103 lcd_puts(0, line, credits[i]);
104 line++;
105 if ( line == MAX_LINES ) {
106 lcd_update();
107 /* abort on keypress */
108 for ( j=0;j<10;j++ ) {
109 sleep(DISPLAY_TIME/10);
110 if (button_get(false))
111 return;
112 }
113 lcd_clear_display();
114 line=0;
115 }
116 }
117 if ( line != MAX_LINES ) {
118 lcd_update();
119 /* abort on keypress */
120 for ( j=0;j<10;j++ ) {
121 sleep(DISPLAY_TIME/10);
122 if (button_get(false))
123 return;
124 }
125 }
126} 99}