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/gui/gwps.c | |
parent | 5c1cc2f7477853f64f53a1752dc74e0bc7365e67 (diff) |
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/gui/gwps.c')
-rw-r--r-- | apps/gui/gwps.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/gui/gwps.c b/apps/gui/gwps.c index e31ac12110..024c3cc79f 100644 --- a/apps/gui/gwps.c +++ b/apps/gui/gwps.c @@ -109,7 +109,7 @@ long gui_wps_show(void) { gui_wps_set_margin(&gui_wps[i]); } -#if HAVE_LCD_COLOR +#ifdef HAVE_LCD_COLOR old_backdrop = lcd_get_backdrop(); if (wps_has_backdrop) { lcd_set_backdrop(&wps_backdrop[0][0]); |