summaryrefslogtreecommitdiff
path: root/apps/recorder/icons.c
diff options
context:
space:
mode:
authorBjörn Stenberg <bjorn@haxx.se>2002-09-23 11:17:52 +0000
committerBjörn Stenberg <bjorn@haxx.se>2002-09-23 11:17:52 +0000
commit86f9a8410b8cfe53b11ca10f4f6dbcc2440c0e97 (patch)
tree48a2555b17b1b485b9c5f8c1385296f6cdff2309 /apps/recorder/icons.c
parente0d60436b2ab01d02e577b2f4cd9c8967d74d635 (diff)
downloadrockbox-86f9a8410b8cfe53b11ca10f4f6dbcc2440c0e97.tar.gz
rockbox-86f9a8410b8cfe53b11ca10f4f6dbcc2440c0e97.zip
Split lcd driver into lcd-player and lcd-recorder. Player simulator still needs fixing.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2370 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/recorder/icons.c')
-rw-r--r--apps/recorder/icons.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/apps/recorder/icons.c b/apps/recorder/icons.c
index 0e628d8255..0e4bb8ab8d 100644
--- a/apps/recorder/icons.c
+++ b/apps/recorder/icons.c
@@ -165,10 +165,7 @@ unsigned char rockbox112x37[]={
165 */ 165 */
166void statusbar_wipe(void) 166void statusbar_wipe(void)
167{ 167{
168 int x; 168 lcd_clearrect(0,0,LCD_WIDTH,8);
169
170 for (x = 0; x < LCD_WIDTH; x++)
171 lcd_framebuffer[x][STATUSBAR_Y_POS / 8] = 0;
172} 169}
173 170
174/* 171/*
@@ -297,9 +294,6 @@ void statusbar_time(int hour, int minute)
297{ 294{
298 unsigned char buffer[6]; 295 unsigned char buffer[6];
299 unsigned int width, height; 296 unsigned int width, height;
300#if defined(LOADABLE_FONTS)
301 unsigned char *font;
302#endif
303 297
304 if ( hour >= 0 && 298 if ( hour >= 0 &&
305 hour <= 23 && 299 hour <= 23 &&