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
This commit is contained in:
Björn Stenberg 2002-09-23 11:17:52 +00:00
parent e0d60436b2
commit 86f9a8410b
9 changed files with 1130 additions and 1100 deletions

View file

@ -165,10 +165,7 @@ unsigned char rockbox112x37[]={
*/
void statusbar_wipe(void)
{
int x;
for (x = 0; x < LCD_WIDTH; x++)
lcd_framebuffer[x][STATUSBAR_Y_POS / 8] = 0;
lcd_clearrect(0,0,LCD_WIDTH,8);
}
/*
@ -297,9 +294,6 @@ void statusbar_time(int hour, int minute)
{
unsigned char buffer[6];
unsigned int width, height;
#if defined(LOADABLE_FONTS)
unsigned char *font;
#endif
if ( hour >= 0 &&
hour <= 23 &&