summaryrefslogtreecommitdiff
path: root/apps/plugins/mpegplayer/mpegplayer.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/mpegplayer/mpegplayer.c')
-rw-r--r--apps/plugins/mpegplayer/mpegplayer.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/apps/plugins/mpegplayer/mpegplayer.c b/apps/plugins/mpegplayer/mpegplayer.c
index 928c48ab11..467c961912 100644
--- a/apps/plugins/mpegplayer/mpegplayer.c
+++ b/apps/plugins/mpegplayer/mpegplayer.c
@@ -1026,8 +1026,9 @@ static void fps_init(void)
1026 1026
1027#if defined(HAVE_LCD_ENABLE) || defined(HAVE_LCD_SLEEP) 1027#if defined(HAVE_LCD_ENABLE) || defined(HAVE_LCD_SLEEP)
1028/* So we can refresh the overlay */ 1028/* So we can refresh the overlay */
1029static void osd_lcd_enable_hook(void* param) 1029static void osd_lcd_enable_hook(unsigned short id, void* param)
1030{ 1030{
1031 (void)id;
1031 (void)param; 1032 (void)param;
1032 rb->queue_post(rb->button_queue, LCD_ENABLE_EVENT_1, 0); 1033 rb->queue_post(rb->button_queue, LCD_ENABLE_EVENT_1, 0);
1033} 1034}
@@ -1043,7 +1044,7 @@ static void osd_backlight_on_video_mode(bool video_on)
1043#endif 1044#endif
1044 } else { 1045 } else {
1045#if defined(HAVE_LCD_ENABLE) || defined(HAVE_LCD_SLEEP) 1046#if defined(HAVE_LCD_ENABLE) || defined(HAVE_LCD_SLEEP)
1046 rb->add_event(LCD_EVENT_ACTIVATION, false, osd_lcd_enable_hook); 1047 rb->add_event(LCD_EVENT_ACTIVATION, osd_lcd_enable_hook);
1047#endif 1048#endif
1048 /* Revert to user's backlight settings */ 1049 /* Revert to user's backlight settings */
1049 backlight_use_settings(); 1050 backlight_use_settings();