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.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/apps/plugins/credits.c b/apps/plugins/credits.c
index 593b54277e..3374a33415 100644
--- a/apps/plugins/credits.c
+++ b/apps/plugins/credits.c
@@ -303,17 +303,21 @@ enum plugin_status plugin_start(const void* parameter)
303{ 303{
304 (void)parameter; 304 (void)parameter;
305 305
306#ifdef HAVE_BACKLIGHT
306 /* Turn off backlight timeout */ 307 /* Turn off backlight timeout */
307 backlight_ignore_timeout(); 308 backlight_ignore_timeout();
309#endif
308 310
309 rb->show_logo(); 311 rb->show_logo();
310 312
311 /* Show the logo for about 3 secs allowing the user to stop */ 313 /* Show the logo for about 3 secs allowing the user to stop */
312 if(!rb->action_userabort(3*HZ)) 314 if(!rb->action_userabort(3*HZ))
313 roll_credits(); 315 roll_credits();
314 316
317#ifdef HAVE_BACKLIGHT
315 /* Turn on backlight timeout (revert to settings) */ 318 /* Turn on backlight timeout (revert to settings) */
316 backlight_use_settings(); 319 backlight_use_settings();
320#endif
317 321
318 return PLUGIN_OK; 322 return PLUGIN_OK;
319} 323}