1
0
Fork 0
forked from len0rd/rockbox

apps: lcd-remote.h is not needed if HAVE_REMOTE_LCD is not defined

Fix a comment

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@31608 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Rafaël Carré 2012-01-07 19:35:46 +00:00
parent 351c8b2573
commit b612263b1e
6 changed files with 13 additions and 1 deletions

View file

@ -52,7 +52,9 @@
#ifdef HAVE_TAGCACHE #ifdef HAVE_TAGCACHE
#include "tagcache.h" #include "tagcache.h"
#endif #endif
#ifdef HAVE_REMOTE_LCD
#include "lcd-remote.h" #include "lcd-remote.h"
#endif
#include "crc32.h" #include "crc32.h"
#include "logf.h" #include "logf.h"
#if (CONFIG_PLATFORM & PLATFORM_NATIVE) #if (CONFIG_PLATFORM & PLATFORM_NATIVE)

View file

@ -22,7 +22,9 @@
#include <stdlib.h> #include <stdlib.h>
#include "config.h" #include "config.h"
#include "lcd.h" #include "lcd.h"
#ifdef HAVE_REMOTE_LCD
#include "lcd-remote.h" #include "lcd-remote.h"
#endif
#include "font.h" #include "font.h"
#include "viewport.h" #include "viewport.h"
#include "screen_access.h" #include "screen_access.h"

View file

@ -35,7 +35,9 @@
#endif #endif
#include "talk.h" #include "talk.h"
#include "lcd.h" #include "lcd.h"
#ifdef HAVE_REMOTE_LCD
#include "lcd-remote.h" #include "lcd-remote.h"
#endif
#ifdef HAVE_TOUCHSCREEN #ifdef HAVE_TOUCHSCREEN
#include "screens.h" #include "screens.h"
#endif #endif

View file

@ -32,7 +32,9 @@
#include "list.h" #include "list.h"
#include "color_picker.h" #include "color_picker.h"
#include "lcd.h" #include "lcd.h"
#ifdef HAVE_REMOTE_LCD
#include "lcd-remote.h" #include "lcd-remote.h"
#endif
#include "backdrop.h" #include "backdrop.h"
#include "exported_menus.h" #include "exported_menus.h"
#include "appevents.h" #include "appevents.h"

View file

@ -33,7 +33,9 @@
#ifndef __PCTOOL__ #ifndef __PCTOOL__
#include "lang.h" #include "lang.h"
#include "dir.h" #include "dir.h"
#ifdef HAVE_REMOTE_LCD
#include "lcd-remote.h" #include "lcd-remote.h"
#endif
#include "timefuncs.h" #include "timefuncs.h"
#include "screens.h" #include "screens.h"
#include "usb_screen.h" #include "usb_screen.h"

View file

@ -22,7 +22,9 @@
#include <stdio.h> #include <stdio.h>
#include "config.h" #include "config.h"
#include <lcd.h> #include <lcd.h>
#ifdef HAVE_REMOTE_LCD
#include <lcd-remote.h> #include <lcd-remote.h>
#endif
#include <scroll_engine.h> #include <scroll_engine.h>
#include <font.h> #include <font.h>
#include <button.h> #include <button.h>
@ -356,7 +358,7 @@ struct screen screens[NB_SCREENS] =
.has_buttonbar=false, .has_buttonbar=false,
#endif #endif
} }
#endif /* HAVE_REMOTE_LCD */ #endif /* NB_SCREENS == 2 */
}; };
#ifdef HAVE_LCD_BITMAP #ifdef HAVE_LCD_BITMAP