summaryrefslogtreecommitdiffstats
path: root/firmware
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 /firmware
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
Diffstat (limited to 'firmware')
-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)
if((unsigned)y>=LCD_SCROLLABLE_LINES) return;
s = &lcd_scroll_info.scroll[y];
-#ifdef HAVE_LCD_COLOR
s->style = !s->style; /* FIXME: now that the setting isn't bool this seems
flawed. */
-#else
- s->invert = !s->invert;
-#endif
}
void lcd_scroll_step(int step)
@@ -147,12 +143,8 @@ void lcd_remote_invertscroll(int x, int y)
if((unsigned)y>=LCD_REMOTE_SCROLLABLE_LINES) return;
s = &lcd_remote_scroll_info.scroll[y];
-#ifdef HAVE_LCD_COLOR
s->style = !s->style; /* FIXME: now that the setting isn't bool this seems
flawed. */
-#else
- s->invert = !s->invert;
-#endif
}
void lcd_remote_stop_scroll(void)