forked from len0rd/rockbox
Fix red and remove duplicated function declaration
Change-Id: I5fed7fdad077eedfc1e36fbd9e1669f11b90288d
This commit is contained in:
parent
e662ae4e9e
commit
26e0c64e34
3 changed files with 6 additions and 6 deletions
|
|
@ -26,6 +26,10 @@
|
|||
#include "config.h"
|
||||
#include "system.h"
|
||||
#include "lcd.h"
|
||||
#if defined(HAVE_TRANSFLECTIVE_LCD) && defined(HAVE_LCD_ENABLE)
|
||||
/* in uisimulator/sdl/lcd-bitmap.c and lcd-charcell.c */
|
||||
extern void sim_backlight(int value);
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_LCD_ENABLE
|
||||
static bool lcd_enabled = false;
|
||||
|
|
@ -78,7 +82,7 @@ void lcd_remote_set_invert_display(bool invert)
|
|||
void lcd_sleep(void)
|
||||
{
|
||||
lcd_sleeping = true;
|
||||
#ifdef HAVE_TRANSFLECTIVE_LCD
|
||||
#if defined(HAVE_TRANSFLECTIVE_LCD) && defined(HAVE_LCD_ENABLE)
|
||||
sim_backlight(0); /* completely blacken the screen */
|
||||
#endif
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue