summaryrefslogtreecommitdiff
path: root/uisimulator/common/lcd-common.c
diff options
context:
space:
mode:
authorSebastian Leonhardt <sebastian.leonhardt@web.de>2019-02-08 00:52:37 +0100
committerSebastian Leonhardt <sebastian.leonhardt@web.de>2019-02-08 00:52:37 +0100
commit168e2424988c8142da8ebb29ae633440062d4b16 (patch)
tree93895f1fc30f5e7f041cd8d49823d00cdd41578c /uisimulator/common/lcd-common.c
parent26e0c64e34f05d3869a7e5e26d7dd388888fa72e (diff)
downloadrockbox-168e2424988c8142da8ebb29ae633440062d4b16.tar.gz
rockbox-168e2424988c8142da8ebb29ae633440062d4b16.zip
Fix the fix
Change-Id: I54b97fd0c208f775e4ee22cf8499f1da423ebc39
Diffstat (limited to 'uisimulator/common/lcd-common.c')
-rw-r--r--uisimulator/common/lcd-common.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/uisimulator/common/lcd-common.c b/uisimulator/common/lcd-common.c
index c33e058858..a03b9c711f 100644
--- a/uisimulator/common/lcd-common.c
+++ b/uisimulator/common/lcd-common.c
@@ -26,7 +26,7 @@
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) 29#if defined(HAVE_TRANSFLECTIVE_LCD) && defined(HAVE_LCD_SLEEP)
30/* in uisimulator/sdl/lcd-bitmap.c and lcd-charcell.c */ 30/* in uisimulator/sdl/lcd-bitmap.c and lcd-charcell.c */
31extern void sim_backlight(int value); 31extern void sim_backlight(int value);
32#endif 32#endif
@@ -82,7 +82,7 @@ void lcd_remote_set_invert_display(bool invert)
82void lcd_sleep(void) 82void lcd_sleep(void)
83{ 83{
84 lcd_sleeping = true; 84 lcd_sleeping = true;
85#if defined(HAVE_TRANSFLECTIVE_LCD) && defined(HAVE_LCD_ENABLE) 85#if defined(HAVE_TRANSFLECTIVE_LCD) && defined(HAVE_LCD_SLEEP)
86 sim_backlight(0); /* completely blacken the screen */ 86 sim_backlight(0); /* completely blacken the screen */
87#endif 87#endif
88} 88}