summaryrefslogtreecommitdiff
path: root/apps/plugins/video.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/video.c')
-rw-r--r--apps/plugins/video.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/video.c b/apps/plugins/video.c
index 5ebe8dc2e6..2799e3d5d1 100644
--- a/apps/plugins/video.c
+++ b/apps/plugins/video.c
@@ -561,7 +561,7 @@ void Cleanup(void *fd)
561 rb->mp3_play_stop(); /* stop audio ISR */ 561 rb->mp3_play_stop(); /* stop audio ISR */
562 562
563 /* Turn on backlight timeout (revert to settings) */ 563 /* Turn on backlight timeout (revert to settings) */
564 backlight_use_settings(); /* backlight control in lib/helper.c */ 564 backlight_use_settings(rb); /* backlight control in lib/helper.c */
565 565
566 /* restore normal contrast */ 566 /* restore normal contrast */
567 rb->lcd_set_contrast(rb->global_settings->contrast); 567 rb->lcd_set_contrast(rb->global_settings->contrast);
@@ -926,7 +926,7 @@ int main(char* filename)
926 { 926 {
927 gPlay.bHasVideo = true; 927 gPlay.bHasVideo = true;
928 /* Turn off backlight timeout */ 928 /* Turn off backlight timeout */
929 backlight_force_on(); /* backlight control in lib/helper.c */ 929 backlight_force_on(rb); /* backlight control in lib/helper.c */
930 } 930 }
931 931
932 /* prepare audio playback, if contained */ 932 /* prepare audio playback, if contained */