summaryrefslogtreecommitdiff
path: root/apps/menus
diff options
context:
space:
mode:
authorJonathan Gordon <rockbox@jdgordon.info>2011-11-19 13:46:25 +0000
committerJonathan Gordon <rockbox@jdgordon.info>2011-11-19 13:46:25 +0000
commit1252d0d54084a17255d2fad57a462cd15479561b (patch)
treeabb5e6a523fde1a44b2d41c5bf564e25286d4dc5 /apps/menus
parent852b68c74aab63915ba9c9c7378cf33e3277e6bb (diff)
downloadrockbox-1252d0d54084a17255d2fad57a462cd15479561b.tar.gz
rockbox-1252d0d54084a17255d2fad57a462cd15479561b.zip
Get rid of a really annoying #ifdef line to check if backdrop support should be enabled
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@31027 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/menus')
-rw-r--r--apps/menus/theme_menu.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/menus/theme_menu.c b/apps/menus/theme_menu.c
index 4aceb83291..f5af1c7b78 100644
--- a/apps/menus/theme_menu.c
+++ b/apps/menus/theme_menu.c
@@ -40,7 +40,7 @@
40#include "statusbar-skinned.h" 40#include "statusbar-skinned.h"
41#include "skin_engine/skin_engine.h" 41#include "skin_engine/skin_engine.h"
42 42
43#if LCD_DEPTH > 1 43#ifdef HAVE_BACKDROP_IMAGE
44/** 44/**
45* Menu to clear the backdrop image 45* Menu to clear the backdrop image
46 */ 46 */
@@ -387,7 +387,7 @@ MAKE_MENU(theme_menu, ID2P(LANG_THEME_MENU),
387 &browse_rsbs, 387 &browse_rsbs,
388#endif 388#endif
389 &show_icons, 389 &show_icons,
390#if LCD_DEPTH > 1 390#ifdef HAVE_BACKDROP_IMAGE
391 &clear_main_bd, 391 &clear_main_bd,
392#endif 392#endif
393#ifdef HAVE_LCD_BITMAP 393#ifdef HAVE_LCD_BITMAP