diff options
author | Björn Stenberg <bjorn@haxx.se> | 2002-08-20 20:27:36 +0000 |
---|---|---|
committer | Björn Stenberg <bjorn@haxx.se> | 2002-08-20 20:27:36 +0000 |
commit | 1b05752a3fd4bb36c78fc6c300a83deb010075cf (patch) | |
tree | 4142a07512c058d072c7878186062a5fcd7280ce /apps/tree.c | |
parent | faacfea055471c3f7e19eb1ab091dd4a38dd958b (diff) | |
download | rockbox-1b05752a3fd4bb36c78fc6c300a83deb010075cf.tar.gz rockbox-1b05752a3fd4bb36c78fc6c300a83deb010075cf.zip |
Always remove double-height when resuming
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1826 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/tree.c')
-rw-r--r-- | apps/tree.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/apps/tree.c b/apps/tree.c index a07a520955..b1da2bd280 100644 --- a/apps/tree.c +++ b/apps/tree.c @@ -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 |