1
0
Fork 0
forked from len0rd/rockbox

Always remove double-height when resuming

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1826 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Björn Stenberg 2002-08-20 20:27:36 +00:00
parent faacfea055
commit 1b05752a3f

View file

@ -296,13 +296,14 @@ static int showdir(char *path, int start)
bool ask_resume(void)
{
#ifdef HAVE_NEW_CHARCELL_LCD
lcd_double_height(false);
#endif
/* always resume? */
if ( global_settings.resume == RESUME_ON )
return true;
#ifdef HAVE_NEW_CHARCELL_LCD
lcd_double_height(false);
#endif
lcd_clear_display();
lcd_puts(0,0,"Resume?");
#ifdef HAVE_LCD_CHARCELLS