1
0
Fork 0
forked from len0rd/rockbox

Show boot screen double height on new players

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@852 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Björn Stenberg 2002-05-31 09:56:05 +00:00
parent 6ea157d078
commit aa9776404f

View file

@ -72,13 +72,16 @@ int show_logo( void )
height+10+font_h, version, 0);
#else
char *rockbox = "ROCKbox!";
lcd_clear_display();
#ifdef HAVE_NEW_CHARCELL_LCD
lcd_double_height(true);
#endif
lcd_puts(0, 0, rockbox);
lcd_puts(0, 1, appsversion);
#endif
lcd_update();
return 0;
}
@ -87,6 +90,9 @@ void show_credits(void)
int j = 0;
show_logo();
#ifdef HAVE_NEW_CHARCELL_LCD
lcd_double_height(false);
#endif
for (j = 0; j < 10; j++) {
sleep((HZ*2)/10);
@ -94,7 +100,6 @@ void show_credits(void)
if (button_get(false))
return;
}
roll_credits();
}