summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 e21cb8b..cb8585c 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)