summaryrefslogtreecommitdiff
path: root/apps/plugins/credits.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/credits.c')
-rw-r--r--apps/plugins/credits.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/credits.c b/apps/plugins/credits.c
index 8f86c7626b..d766d45cfd 100644
--- a/apps/plugins/credits.c
+++ b/apps/plugins/credits.c
@@ -372,7 +372,7 @@ enum plugin_status plugin_start(const void* parameter)
372 (void)parameter; 372 (void)parameter;
373 373
374 /* Turn off backlight timeout */ 374 /* Turn off backlight timeout */
375 backlight_force_on(); /* backlight control in lib/helper.c */ 375 backlight_ignore_timeout();
376 376
377 rb->show_logo(); 377 rb->show_logo();
378#ifdef HAVE_LCD_CHARCELLS 378#ifdef HAVE_LCD_CHARCELLS
@@ -384,7 +384,7 @@ enum plugin_status plugin_start(const void* parameter)
384 roll_credits(); 384 roll_credits();
385 385
386 /* Turn on backlight timeout (revert to settings) */ 386 /* Turn on backlight timeout (revert to settings) */
387 backlight_use_settings(); /* backlight control in lib/helper.c */ 387 backlight_use_settings();
388 388
389 return PLUGIN_OK; 389 return PLUGIN_OK;
390} 390}