summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntoine Cellerier <dionoea@videolan.org>2007-09-30 21:48:40 +0000
committerAntoine Cellerier <dionoea@videolan.org>2007-09-30 21:48:40 +0000
commitd10831f1579c57dd46116d2a7f2b246aa5504a12 (patch)
treebc41cb1a30f6e92f9c6e1d0a6b43db092d9b9f87
parenta5fcfd1e7f3747759b8b2af4c82cadec610ac192 (diff)
downloadrockbox-d10831f1579c57dd46116d2a7f2b246aa5504a12.tar.gz
rockbox-d10831f1579c57dd46116d2a7f2b246aa5504a12.zip
Woops, forgot to change it here too.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@14931 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--firmware/scroll_engine.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/firmware/scroll_engine.c b/firmware/scroll_engine.c
index e21cb8b3ae..cb8585cbba 100644
--- a/firmware/scroll_engine.c
+++ b/firmware/scroll_engine.c
@@ -99,12 +99,8 @@ void lcd_invertscroll(int x, int y)
99 if((unsigned)y>=LCD_SCROLLABLE_LINES) return; 99 if((unsigned)y>=LCD_SCROLLABLE_LINES) return;
100 100
101 s = &lcd_scroll_info.scroll[y]; 101 s = &lcd_scroll_info.scroll[y];
102#ifdef HAVE_LCD_COLOR
103 s->style = !s->style; /* FIXME: now that the setting isn't bool this seems 102 s->style = !s->style; /* FIXME: now that the setting isn't bool this seems
104 flawed. */ 103 flawed. */
105#else
106 s->invert = !s->invert;
107#endif
108} 104}
109 105
110void lcd_scroll_step(int step) 106void lcd_scroll_step(int step)
@@ -147,12 +143,8 @@ void lcd_remote_invertscroll(int x, int y)
147 if((unsigned)y>=LCD_REMOTE_SCROLLABLE_LINES) return; 143 if((unsigned)y>=LCD_REMOTE_SCROLLABLE_LINES) return;
148 144
149 s = &lcd_remote_scroll_info.scroll[y]; 145 s = &lcd_remote_scroll_info.scroll[y];
150#ifdef HAVE_LCD_COLOR
151 s->style = !s->style; /* FIXME: now that the setting isn't bool this seems 146 s->style = !s->style; /* FIXME: now that the setting isn't bool this seems
152 flawed. */ 147 flawed. */
153#else
154 s->invert = !s->invert;
155#endif
156} 148}
157 149
158void lcd_remote_stop_scroll(void) 150void lcd_remote_stop_scroll(void)