summaryrefslogtreecommitdiff
path: root/apps/plugins
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins')
-rw-r--r--apps/plugins/mpegplayer/mpeg_settings.c6
-rw-r--r--apps/plugins/mpegplayer/mpegplayer.c6
2 files changed, 6 insertions, 6 deletions
diff --git a/apps/plugins/mpegplayer/mpeg_settings.c b/apps/plugins/mpegplayer/mpeg_settings.c
index 519fd0f059..14863c943d 100644
--- a/apps/plugins/mpegplayer/mpeg_settings.c
+++ b/apps/plugins/mpegplayer/mpeg_settings.c
@@ -571,7 +571,7 @@ static int get_start_time(uint32_t duration)
571 lcd_(clear_display)(); 571 lcd_(clear_display)();
572 lcd_(update)(); 572 lcd_(update)();
573 573
574#ifdef HAVE_LCD_ENABLE 574#if defined(HAVE_LCD_ENABLE) && defined(HAVE_LCD_COLOR)
575 rb->lcd_set_enable_hook(get_start_time_lcd_enable_hook); 575 rb->lcd_set_enable_hook(get_start_time_lcd_enable_hook);
576#endif 576#endif
577 577
@@ -762,11 +762,11 @@ static int get_start_time(uint32_t duration)
762 rb->yield(); 762 rb->yield();
763 } 763 }
764 764
765#ifdef HAVE_LCD_COLOR
765#ifdef HAVE_LCD_ENABLE 766#ifdef HAVE_LCD_ENABLE
766 rb->lcd_set_enable_hook(NULL); 767 rb->lcd_set_enable_hook(NULL);
767#endif 768#endif
768 769#else
769#ifndef HAVE_LCD_COLOR
770 stream_gray_show(false); 770 stream_gray_show(false);
771 grey_clear_display(); 771 grey_clear_display();
772 grey_update(); 772 grey_update();
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);