forked from len0rd/rockbox
Fix Remove lcd_scroll_worker from bootloader except remote displays/charcell
This patch was supposed to only remove scroll worker from devices without remote displays, the build system said otherwise Change-Id: I240db89ee6b55818dbd2567338515b53ebe09300 fixed: conditional define
This commit is contained in:
parent
0999a22ef8
commit
038a10220e
1 changed files with 2 additions and 1 deletions
|
@ -200,7 +200,8 @@ bool LCDFN(scroll_now)(struct scrollinfo *s)
|
|||
|
||||
return ended;
|
||||
}
|
||||
#if (!defined(BOOTLOADER) && !defined(HAVE_REMOTE_LCD)) || defined(HAVE_LCD_CHARCELLS)
|
||||
|
||||
#if !defined(BOOTLOADER) || defined(HAVE_REMOTE_LCD) || defined(HAVE_LCD_CHARCELLS)
|
||||
static void LCDFN(scroll_worker)(void)
|
||||
{
|
||||
int index;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue