diff options
author | Dave Chapman <dave@dchapman.com> | 2006-02-02 21:46:23 +0000 |
---|---|---|
committer | Dave Chapman <dave@dchapman.com> | 2006-02-02 21:46:23 +0000 |
commit | 33f2e28daa94fb8996822311fee4a596608638f7 (patch) | |
tree | 842048f0ed75903113779a361d976be04ad821f5 /apps/tree.c | |
parent | 5c1cc2f7477853f64f53a1752dc74e0bc7365e67 (diff) | |
download | rockbox-33f2e28daa94fb8996822311fee4a596608638f7.tar.gz rockbox-33f2e28daa94fb8996822311fee4a596608638f7.zip |
Fix typos - tests for HAVE_LCD_COLOR should use #ifdef, not #if
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8540 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/tree.c')
-rw-r--r-- | apps/tree.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/tree.c b/apps/tree.c index b61ed0a43d..e91eb4b16f 100644 --- a/apps/tree.c +++ b/apps/tree.c @@ -864,18 +864,18 @@ static bool dirbrowse(void) if (start_wps && audio_status() ) { int i; -#if HAVE_LCD_COLOR +#ifdef HAVE_LCD_COLOR fb_data* old_backdrop; #endif FOR_NB_SCREENS(i) screens[i].stop_scroll(); -#if HAVE_LCD_COLOR +#ifdef HAVE_LCD_COLOR old_backdrop = lcd_get_backdrop(); #endif if (gui_wps_show() == SYS_USB_CONNECTED) reload_dir = true; -#if HAVE_LCD_COLOR +#ifdef HAVE_LCD_COLOR lcd_set_backdrop(old_backdrop); #endif #ifdef HAVE_HOTSWAP |