summaryrefslogtreecommitdiff
path: root/uisimulator/common/lcd-common.c
diff options
context:
space:
mode:
Diffstat (limited to 'uisimulator/common/lcd-common.c')
-rw-r--r--uisimulator/common/lcd-common.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/uisimulator/common/lcd-common.c b/uisimulator/common/lcd-common.c
index 52db776856..2acf4b386d 100644
--- a/uisimulator/common/lcd-common.c
+++ b/uisimulator/common/lcd-common.c
@@ -22,7 +22,9 @@
22 * 22 *
23 ****************************************************************************/ 23 ****************************************************************************/
24 24
25#include <stdbool.h>
25#include "config.h" 26#include "config.h"
27#include "system.h"
26#include "lcd.h" 28#include "lcd.h"
27 29
28#ifdef HAVE_LCD_ENABLE 30#ifdef HAVE_LCD_ENABLE
@@ -82,7 +84,7 @@ void lcd_awake(void)
82{ 84{
83 if (lcd_sleeping) 85 if (lcd_sleeping)
84 { 86 {
85 lcd_activation_call_hook(); 87 send_event(LCD_EVENT_ACTIVATION, NULL);
86 lcd_sleeping = false; 88 lcd_sleeping = false;
87 } 89 }
88} 90}
@@ -96,7 +98,7 @@ void lcd_enable(bool on)
96 /* lcd_awake will handle the activation call */ 98 /* lcd_awake will handle the activation call */
97 lcd_awake(); 99 lcd_awake();
98#else 100#else
99 lcd_activation_call_hook(); 101 send_event(LCD_EVENT_ACTIVATION, NULL);
100#endif 102#endif
101 } 103 }
102 lcd_enabled = on; 104 lcd_enabled = on;