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.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/plugins/mpegplayer/mpegplayer.c b/apps/plugins/mpegplayer/mpegplayer.c
index cb8c0d2133..5e34c2b041 100644
--- a/apps/plugins/mpegplayer/mpegplayer.c
+++ b/apps/plugins/mpegplayer/mpegplayer.c
@@ -612,11 +612,11 @@ static void wvs_backlight_on_video_mode(bool video_on)
612 /* Turn off backlight timeout */ 612 /* Turn off backlight timeout */
613 /* backlight control in lib/helper.c */ 613 /* backlight control in lib/helper.c */
614 backlight_force_on(rb); 614 backlight_force_on(rb);
615#ifdef HAVE_LCD_ENABLE 615#if defined(HAVE_LCD_ENABLE) && defined(HAVE_LCD_COLOR)
616 rb->lcd_set_enable_hook(NULL); 616 rb->lcd_set_enable_hook(NULL);
617#endif 617#endif
618 } else { 618 } else {
619#ifdef HAVE_LCD_ENABLE 619#if defined(HAVE_LCD_ENABLE) && defined(HAVE_LCD_COLOR)
620 rb->lcd_set_enable_hook(wvs_lcd_enable_hook); 620 rb->lcd_set_enable_hook(wvs_lcd_enable_hook);
621#endif 621#endif
622 /* Revert to user's backlight settings */ 622 /* Revert to user's backlight settings */
@@ -1605,7 +1605,7 @@ static void button_loop(void)
1605 1605
1606 wvs_stop(); 1606 wvs_stop();
1607 1607
1608#ifdef HAVE_LCD_ENABLE 1608#if defined(HAVE_LCD_ENABLE) && defined(HAVE_LCD_COLOR)
1609 /* Be sure hook is removed before exiting since the stop will put it 1609 /* Be sure hook is removed before exiting since the stop will put it
1610 * back because of the backlight restore. */ 1610 * back because of the backlight restore. */
1611 rb->lcd_set_enable_hook(NULL); 1611 rb->lcd_set_enable_hook(NULL);