summaryrefslogtreecommitdiff
path: root/apps/plugins/lrcplayer.c
diff options
context:
space:
mode:
authorNils Wallménius <nils@rockbox.org>2010-07-24 10:51:58 +0000
committerNils Wallménius <nils@rockbox.org>2010-07-24 10:51:58 +0000
commitd3fd3a372b728fea2b893653b4c90a7c1146ff3b (patch)
treeccfbb157da598116214c4ad268eef24a9587fe94 /apps/plugins/lrcplayer.c
parent4eda82ba586dadb780be924120ab0757c2a66e96 (diff)
downloadrockbox-d3fd3a372b728fea2b893653b4c90a7c1146ff3b.zip
rockbox-d3fd3a372b728fea2b893653b4c90a7c1146ff3b.tar.gz
rockbox-d3fd3a372b728fea2b893653b4c90a7c1146ff3b.tar.bz2
rockbox-d3fd3a372b728fea2b893653b4c90a7c1146ff3b.tar.xz
s/HAVE_LCD_REMOTE/HAVE_REMOTE_LCD/
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27539 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/lrcplayer.c')
-rw-r--r--apps/plugins/lrcplayer.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/plugins/lrcplayer.c b/apps/plugins/lrcplayer.c
index cf5c07b..43f3b8e 100644
--- a/apps/plugins/lrcplayer.c
+++ b/apps/plugins/lrcplayer.c
@@ -1661,7 +1661,7 @@ static void display_time(void)
static inline void set_to_default(struct screen *display)
{
#if (LCD_DEPTH > 1)
-#ifdef HAVE_LCD_REMOTE
+#ifdef HAVE_REMOTE_LCD
if (display->screen_type != SCREEN_REMOTE)
#endif
display->set_foreground(prefs.active_color);
@@ -1671,7 +1671,7 @@ static inline void set_to_default(struct screen *display)
static inline void set_to_active(struct screen *display)
{
#if (LCD_DEPTH > 1)
-#ifdef HAVE_LCD_REMOTE
+#ifdef HAVE_REMOTE_LCD
if (display->screen_type == SCREEN_REMOTE)
display->set_drawmode(DRMODE_INVERSEVID);
else
@@ -1687,7 +1687,7 @@ static inline void set_to_active(struct screen *display)
static inline void set_to_inactive(struct screen *display)
{
#if (LCD_DEPTH > 1)
-#ifdef HAVE_LCD_REMOTE
+#ifdef HAVE_REMOTE_LCD
if (display->screen_type != SCREEN_REMOTE)
#endif
display->set_foreground(prefs.inactive_color);
@@ -1796,7 +1796,7 @@ static int display_lrc_line(struct lrc_line *lrc_line, int ypos, int i)
display->fillrect(xpos+elapsed, ypos,
w-elapsed, font_ui_height);
#if (LCD_DEPTH > 1)
-#ifdef HAVE_LCD_REMOTE
+#ifdef HAVE_REMOTE_LCD
if (display->screen_type == SCREEN_REMOTE)
display->set_drawmode(DRMODE_INVERSEVID);
else