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
This commit is contained in:
Dave Chapman 2006-02-02 21:46:23 +00:00
parent 5c1cc2f747
commit 33f2e28daa
4 changed files with 7 additions and 7 deletions

View File

@ -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]);

View File

@ -539,7 +539,7 @@ int onplay(char* file, int attr, int from)
{
struct menu_item items[8]; /* increase this if you add entries! */
int m, i=0, result;
#if HAVE_LCD_COLOR
#ifdef HAVE_LCD_COLOR
char *suffix;
#endif
@ -604,7 +604,7 @@ int onplay(char* file, int attr, int from)
items[i].function = delete_file;
i++;
#if HAVE_LCD_COLOR
#ifdef HAVE_LCD_COLOR
suffix = strrchr(file, '.');
if (suffix) {
if (strcasecmp(suffix, ".bmp") == 0) {

View File

@ -72,7 +72,7 @@
#include "statusbar.h"
#include "splash.h"
#include "list.h"
#if HAVE_LCD_COLOR
#ifdef HAVE_LCD_COLOR
#include "backdrop.h"
#endif

View File

@ -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