summaryrefslogtreecommitdiff
path: root/firmware/scroll_engine.c
diff options
context:
space:
mode:
authorSolomon Peachy <pizza@shaftnet.org>2020-07-19 19:38:45 -0400
committerSolomon Peachy <pizza@shaftnet.org>2020-07-24 21:20:13 +0000
commit0c4f89370d05056faa789aa9cabcccc4e509fb9f (patch)
tree6ddf7fff0a47564db41d39927ea1acbdb03e74ee /firmware/scroll_engine.c
parent092c340a2062fa98b7387fc5fd63578ddae7d0b6 (diff)
downloadrockbox-0c4f89370d05056faa789aa9cabcccc4e509fb9f.tar.gz
rockbox-0c4f89370d05056faa789aa9cabcccc4e509fb9f.zip
[2/4] get rid of HAVE_LCD_CHARCELLS
HAVE_LCD_BITMAP is now redundant. lcd_bitmap is always-on in features.txt so manual and lang strings don't have to change Change-Id: I08eeb20de48099ffc2dc23782711af368c2ec794
Diffstat (limited to 'firmware/scroll_engine.c')
-rw-r--r--firmware/scroll_engine.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/scroll_engine.c b/firmware/scroll_engine.c
index aacaa496e7..b584345a9a 100644
--- a/firmware/scroll_engine.c
+++ b/firmware/scroll_engine.c
@@ -185,12 +185,12 @@ static void scroll_thread(void)
185 while (1) 185 while (1)
186 { 186 {
187 sleep(lcd_scroll_info.ticks); 187 sleep(lcd_scroll_info.ticks);
188#if !defined(BOOTLOADER) || defined(HAVE_LCD_CHARCELLS) 188#if !defined(BOOTLOADER)
189#if defined(HAVE_LCD_ENABLE) || defined(HAVE_LCD_SLEEP) 189#if defined(HAVE_LCD_ENABLE) || defined(HAVE_LCD_SLEEP)
190 if (lcd_active()) 190 if (lcd_active())
191#endif 191#endif
192 lcd_scroll_worker(); 192 lcd_scroll_worker();
193#endif /*!BOOTLOADER\HAVE_LCD_CHARCELLS*/ 193#endif /* !BOOTLOADER */
194 } 194 }
195} 195}
196#endif /* HAVE_REMOTE_LCD */ 196#endif /* HAVE_REMOTE_LCD */