summaryrefslogtreecommitdiff
path: root/uisimulator/common/lcd-common.c
diff options
context:
space:
mode:
authorSebastian Leonhardt <sebastian.leonhardt@web.de>2019-02-07 23:31:38 +0100
committerSebastian Leonhardt <sebastian.leonhardt@web.de>2019-02-08 00:04:20 +0100
commit26e0c64e34f05d3869a7e5e26d7dd388888fa72e (patch)
tree3c3a1f45740aec48d356887b7a28462fae4dcbe7 /uisimulator/common/lcd-common.c
parente662ae4e9e6feb754a909691847e76544282f319 (diff)
downloadrockbox-26e0c64e34f05d3869a7e5e26d7dd388888fa72e.tar.gz
rockbox-26e0c64e34f05d3869a7e5e26d7dd388888fa72e.zip
Fix red and remove duplicated function declaration
Change-Id: I5fed7fdad077eedfc1e36fbd9e1669f11b90288d
Diffstat (limited to 'uisimulator/common/lcd-common.c')
-rw-r--r--uisimulator/common/lcd-common.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/uisimulator/common/lcd-common.c b/uisimulator/common/lcd-common.c
index 9e01f3eda6..c33e058858 100644
--- a/uisimulator/common/lcd-common.c
+++ b/uisimulator/common/lcd-common.c
@@ -26,6 +26,10 @@
26#include "config.h" 26#include "config.h"
27#include "system.h" 27#include "system.h"
28#include "lcd.h" 28#include "lcd.h"
29#if defined(HAVE_TRANSFLECTIVE_LCD) && defined(HAVE_LCD_ENABLE)
30/* in uisimulator/sdl/lcd-bitmap.c and lcd-charcell.c */
31extern void sim_backlight(int value);
32#endif
29 33
30#ifdef HAVE_LCD_ENABLE 34#ifdef HAVE_LCD_ENABLE
31static bool lcd_enabled = false; 35static bool lcd_enabled = false;
@@ -78,7 +82,7 @@ void lcd_remote_set_invert_display(bool invert)
78void lcd_sleep(void) 82void lcd_sleep(void)
79{ 83{
80 lcd_sleeping = true; 84 lcd_sleeping = true;
81#ifdef HAVE_TRANSFLECTIVE_LCD 85#if defined(HAVE_TRANSFLECTIVE_LCD) && defined(HAVE_LCD_ENABLE)
82 sim_backlight(0); /* completely blacken the screen */ 86 sim_backlight(0); /* completely blacken the screen */
83#endif 87#endif
84} 88}