minor changes
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@638 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
c794a1af7f
commit
dfba210850
1 changed files with 8 additions and 8 deletions
16
apps/menu.c
16
apps/menu.c
|
@ -92,7 +92,6 @@ void redraw_cursor(void)
|
|||
|
||||
/*
|
||||
* Move the cursor to a particular id,
|
||||
* current: where it is now
|
||||
* target: where you want it to be
|
||||
*/
|
||||
void put_cursor(int target)
|
||||
|
@ -196,18 +195,19 @@ void menu_draw(void)
|
|||
|
||||
void show_splash(void)
|
||||
{
|
||||
#ifdef HAVE_LCD_BITMAP
|
||||
char *rockbox = "ROCKbox!";
|
||||
|
||||
lcd_clear_display();
|
||||
|
||||
if (show_logo() == 0) {
|
||||
lcd_update();
|
||||
busy_wait();
|
||||
}
|
||||
#ifdef HAVE_LCD_BITMAP
|
||||
if (show_logo() != 0)
|
||||
return;
|
||||
#else
|
||||
char *rockbox = "ROCKbox!";
|
||||
lcd_puts(0, 0, rockbox);
|
||||
busy_wait();
|
||||
#endif
|
||||
|
||||
lcd_update();
|
||||
busy_wait();
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue