From 0a4b247080dd132e847071adbc006ad9de2ca608 Mon Sep 17 00:00:00 2001 From: Linus Nielsen Feltzing Date: Tue, 15 Oct 2002 12:25:57 +0000 Subject: The player firmware now autodetects the LCD type. No need for two player versions anymore git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2658 a1c6a512-1295-4272-9138-f99709370657 --- apps/tree.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'apps/tree.c') diff --git a/apps/tree.c b/apps/tree.c index b026211f3c..1b19b04bba 100644 --- a/apps/tree.c +++ b/apps/tree.c @@ -303,7 +303,7 @@ static int showdir(char *path, int start) qsort(dircache,filesindir,sizeof(struct entry),compare); if ( dir_buffer_full || filesindir == MAX_FILES_IN_DIR ) { -#ifdef HAVE_NEW_CHARCELL_LCD +#ifdef HAVE_LCD_CHARCELLS lcd_double_height(false); #endif lcd_clear_display(); @@ -347,7 +347,7 @@ static int showdir(char *path, int start) } lcd_stop_scroll(); -#ifdef HAVE_NEW_CHARCELL_LCD +#ifdef HAVE_LCD_CHARCELLS lcd_double_height(false); #endif lcd_clear_display(); @@ -446,7 +446,7 @@ static int showdir(char *path, int start) bool ask_resume(void) { -#ifdef HAVE_NEW_CHARCELL_LCD +#ifdef HAVE_LCD_CHARCELLS lcd_double_height(false); #endif -- cgit