Rockbox open source high quality audio player as a Music Player Daemon
mpris rockbox mpd libadwaita audio rust zig deno
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix red fbc8b2156f

lcd_scroll is include in a weird manner and includes need to go in
scroll_engine.c instead and still be blocked from bootloaders

Change-Id: Ic99d123f7d428d511380c7064a9453de56218a17

+4 -2
-2
firmware/drivers/lcd-scroll.c
··· 24 24 /* This file is meant to be #included by scroll_engine.c (twice if a remote 25 25 * is present) */ 26 26 27 - #include "misc.h" 28 - #include "settings.h" 29 27 #ifndef LCDFN /* Not compiling for remote - define macros for main LCD. */ 30 28 #define LCDFN(fn) lcd_ ## fn 31 29 #define LCDM(ma) LCD_ ## ma
+4
firmware/scroll_engine.c
··· 32 32 #include "usb.h" 33 33 #include "lcd.h" 34 34 #include "font.h" 35 + #if !defined(BOOTLOADER) 36 + #include "misc.h" 37 + #include "settings.h" 38 + #endif 35 39 #ifdef HAVE_REMOTE_LCD 36 40 #include "lcd-remote.h" 37 41 #endif