summaryrefslogtreecommitdiff
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
parent4eda82ba586dadb780be924120ab0757c2a66e96 (diff)
downloadrockbox-d3fd3a372b728fea2b893653b4c90a7c1146ff3b.tar.gz
rockbox-d3fd3a372b728fea2b893653b4c90a7c1146ff3b.zip
s/HAVE_LCD_REMOTE/HAVE_REMOTE_LCD/
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27539 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/plugins/lrcplayer.c8
-rw-r--r--apps/recorder/bmp.h2
2 files changed, 5 insertions, 5 deletions
diff --git a/apps/plugins/lrcplayer.c b/apps/plugins/lrcplayer.c
index cf5c07bfc6..43f3b8e359 100644
--- a/apps/plugins/lrcplayer.c
+++ b/apps/plugins/lrcplayer.c
@@ -1661,7 +1661,7 @@ static void display_time(void)
1661static inline void set_to_default(struct screen *display) 1661static inline void set_to_default(struct screen *display)
1662{ 1662{
1663#if (LCD_DEPTH > 1) 1663#if (LCD_DEPTH > 1)
1664#ifdef HAVE_LCD_REMOTE 1664#ifdef HAVE_REMOTE_LCD
1665 if (display->screen_type != SCREEN_REMOTE) 1665 if (display->screen_type != SCREEN_REMOTE)
1666#endif 1666#endif
1667 display->set_foreground(prefs.active_color); 1667 display->set_foreground(prefs.active_color);
@@ -1671,7 +1671,7 @@ static inline void set_to_default(struct screen *display)
1671static inline void set_to_active(struct screen *display) 1671static inline void set_to_active(struct screen *display)
1672{ 1672{
1673#if (LCD_DEPTH > 1) 1673#if (LCD_DEPTH > 1)
1674#ifdef HAVE_LCD_REMOTE 1674#ifdef HAVE_REMOTE_LCD
1675 if (display->screen_type == SCREEN_REMOTE) 1675 if (display->screen_type == SCREEN_REMOTE)
1676 display->set_drawmode(DRMODE_INVERSEVID); 1676 display->set_drawmode(DRMODE_INVERSEVID);
1677 else 1677 else
@@ -1687,7 +1687,7 @@ static inline void set_to_active(struct screen *display)
1687static inline void set_to_inactive(struct screen *display) 1687static inline void set_to_inactive(struct screen *display)
1688{ 1688{
1689#if (LCD_DEPTH > 1) 1689#if (LCD_DEPTH > 1)
1690#ifdef HAVE_LCD_REMOTE 1690#ifdef HAVE_REMOTE_LCD
1691 if (display->screen_type != SCREEN_REMOTE) 1691 if (display->screen_type != SCREEN_REMOTE)
1692#endif 1692#endif
1693 display->set_foreground(prefs.inactive_color); 1693 display->set_foreground(prefs.inactive_color);
@@ -1796,7 +1796,7 @@ static int display_lrc_line(struct lrc_line *lrc_line, int ypos, int i)
1796 display->fillrect(xpos+elapsed, ypos, 1796 display->fillrect(xpos+elapsed, ypos,
1797 w-elapsed, font_ui_height); 1797 w-elapsed, font_ui_height);
1798#if (LCD_DEPTH > 1) 1798#if (LCD_DEPTH > 1)
1799#ifdef HAVE_LCD_REMOTE 1799#ifdef HAVE_REMOTE_LCD
1800 if (display->screen_type == SCREEN_REMOTE) 1800 if (display->screen_type == SCREEN_REMOTE)
1801 display->set_drawmode(DRMODE_INVERSEVID); 1801 display->set_drawmode(DRMODE_INVERSEVID);
1802 else 1802 else
diff --git a/apps/recorder/bmp.h b/apps/recorder/bmp.h
index c6a34dfd94..31bd0730bd 100644
--- a/apps/recorder/bmp.h
+++ b/apps/recorder/bmp.h
@@ -133,7 +133,7 @@ extern const unsigned short vi_pattern[4];
133#endif 133#endif
134 134
135/* Number of data elements in a remote native bitmap width pixels wide */ 135/* Number of data elements in a remote native bitmap width pixels wide */
136#ifdef HAVE_LCD_REMOTE 136#ifdef HAVE_REMOTE_LCD
137#if LCD_REMOTE_DEPTH == 2 && LCD_REMOTE_PIXELFORMAT == HORIZONTAL_PACKING 137#if LCD_REMOTE_DEPTH == 2 && LCD_REMOTE_PIXELFORMAT == HORIZONTAL_PACKING
138#define LCD_REMOTE_BM_WIDTH(width) (((width) + 3) >> 2) 138#define LCD_REMOTE_BM_WIDTH(width) (((width) + 3) >> 2)
139#else 139#else