Fix yellows

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24352 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Thomas Martitz 2010-01-27 20:45:42 +00:00
parent feb3a261c7
commit e18e806930

View file

@ -109,7 +109,7 @@ static void toggle_theme(enum screen_type screen, bool force)
if (is_theme_enabled(screen))
{
#if LCD_DEPTH > 1 || LCD_REMOTE_DEPTH > 1
#if LCD_DEPTH > 1 || (defined(LCD_REMOTE_DEPTH) && LCD_REMOTE_DEPTH > 1)
screens[screen].backdrop_show(BACKDROP_MAIN);
#endif
/* remove the left overs from the previous screen.
@ -164,7 +164,7 @@ static void toggle_theme(enum screen_type screen, bool force)
}
else
{
#if LCD_DEPTH > 1 || LCD_REMOTE_DEPTH > 1
#if LCD_DEPTH > 1 || (defined(LCD_REMOTE_DEPTH) && LCD_REMOTE_DEPTH > 1)
screens[screen].backdrop_hide();
#endif
screens[screen].stop_scroll();