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.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/apps/plugins/mpegplayer/mpegplayer.c b/apps/plugins/mpegplayer/mpegplayer.c
index eaf8f246c6..82ebfb1111 100644
--- a/apps/plugins/mpegplayer/mpegplayer.c
+++ b/apps/plugins/mpegplayer/mpegplayer.c
@@ -621,7 +621,7 @@ static void draw_putsxy_oriented(int x, int y, const char *str)
621} 621}
622#endif /* LCD_PORTRAIT */ 622#endif /* LCD_PORTRAIT */
623 623
624#if defined(HAVE_LCD_ENABLE) && defined(HAVE_LCD_COLOR) 624#if defined(HAVE_LCD_ENABLE) || defined(HAVE_LCD_SLEEP)
625/* So we can refresh the overlay */ 625/* So we can refresh the overlay */
626static void wvs_lcd_enable_hook(void) 626static void wvs_lcd_enable_hook(void)
627{ 627{
@@ -635,12 +635,12 @@ static void wvs_backlight_on_video_mode(bool video_on)
635 /* Turn off backlight timeout */ 635 /* Turn off backlight timeout */
636 /* backlight control in lib/helper.c */ 636 /* backlight control in lib/helper.c */
637 backlight_force_on(); 637 backlight_force_on();
638#if defined(HAVE_LCD_ENABLE) && defined(HAVE_LCD_COLOR) 638#if defined(HAVE_LCD_ENABLE) || defined(HAVE_LCD_SLEEP)
639 rb->lcd_set_enable_hook(NULL); 639 rb->lcd_activation_set_hook(NULL);
640#endif 640#endif
641 } else { 641 } else {
642#if defined(HAVE_LCD_ENABLE) && defined(HAVE_LCD_COLOR) 642#if defined(HAVE_LCD_ENABLE) || defined(HAVE_LCD_SLEEP)
643 rb->lcd_set_enable_hook(wvs_lcd_enable_hook); 643 rb->lcd_activation_set_hook(wvs_lcd_enable_hook);
644#endif 644#endif
645 /* Revert to user's backlight settings */ 645 /* Revert to user's backlight settings */
646 backlight_use_settings(); 646 backlight_use_settings();
@@ -1485,7 +1485,7 @@ static void button_loop(void)
1485 continue; 1485 continue;
1486 } /* BUTTON_NONE: */ 1486 } /* BUTTON_NONE: */
1487 1487
1488#ifdef HAVE_LCD_ENABLE 1488#if defined(HAVE_LCD_ENABLE) || defined(HAVE_LCD_SLEEP)
1489 case LCD_ENABLE_EVENT_1: 1489 case LCD_ENABLE_EVENT_1:
1490 { 1490 {
1491 /* Draw the current frame if prepared already */ 1491 /* Draw the current frame if prepared already */
@@ -1628,10 +1628,10 @@ static void button_loop(void)
1628 1628
1629 wvs_stop(); 1629 wvs_stop();
1630 1630
1631#if defined(HAVE_LCD_ENABLE) && defined(HAVE_LCD_COLOR) 1631#if defined(HAVE_LCD_ENABLE) || defined(HAVE_LCD_SLEEP)
1632 /* Be sure hook is removed before exiting since the stop will put it 1632 /* Be sure hook is removed before exiting since the stop will put it
1633 * back because of the backlight restore. */ 1633 * back because of the backlight restore. */
1634 rb->lcd_set_enable_hook(NULL); 1634 rb->lcd_activation_set_hook(NULL);
1635#endif 1635#endif
1636 1636
1637 rb->lcd_setfont(FONT_UI); 1637 rb->lcd_setfont(FONT_UI);