forked from len0rd/rockbox
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
This commit is contained in:
parent
fbc8b2156f
commit
49bbfe7505
2 changed files with 4 additions and 2 deletions
|
@ -24,8 +24,6 @@
|
|||
/* This file is meant to be #included by scroll_engine.c (twice if a remote
|
||||
* is present) */
|
||||
|
||||
#include "misc.h"
|
||||
#include "settings.h"
|
||||
#ifndef LCDFN /* Not compiling for remote - define macros for main LCD. */
|
||||
#define LCDFN(fn) lcd_ ## fn
|
||||
#define LCDM(ma) LCD_ ## ma
|
||||
|
|
|
@ -32,6 +32,10 @@
|
|||
#include "usb.h"
|
||||
#include "lcd.h"
|
||||
#include "font.h"
|
||||
#if !defined(BOOTLOADER)
|
||||
#include "misc.h"
|
||||
#include "settings.h"
|
||||
#endif
|
||||
#ifdef HAVE_REMOTE_LCD
|
||||
#include "lcd-remote.h"
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue