1
0
Fork 0
forked from len0rd/rockbox

scroll: Fix red from previous commit.

Targets with remote LCDs need to have the lcd scroll driver instantiated,
even in the bootloader.

This is because lcd_remote_scroll_stop() is called, in addition to
lcd_scroll_stop().  This could probably be excised.

Change-Id: I475269f9361eb469c62ad0f74abc1eb3baa4c134
This commit is contained in:
Solomon Peachy 2023-05-17 11:50:38 -04:00
parent 9134c688d9
commit 72c0e49b41
2 changed files with 15 additions and 13 deletions

View file

@ -180,7 +180,7 @@ bool LCDFN(scroll_now)(struct scrollinfo *s)
return ended;
}
#if !defined(BOOTLOADER) || defined(HAVE_REMOTE_LCD)
#if !defined(BOOTLOADER)
static void LCDFN(scroll_worker)(void)
{
int index;