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.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/plugins/credits.c b/apps/plugins/credits.c
index 9e43aab2a7..efdcf42df1 100644
--- a/apps/plugins/credits.c
+++ b/apps/plugins/credits.c
@@ -303,10 +303,10 @@ enum plugin_status plugin_start(const void* parameter)
303{ 303{
304 (void)parameter; 304 (void)parameter;
305 305
306#ifdef HAVE_BACKLIGHT 306
307 /* Turn off backlight timeout */ 307 /* Turn off backlight timeout */
308 backlight_ignore_timeout(); 308 backlight_ignore_timeout();
309#endif 309
310 310
311#if LCD_DEPTH>=16 311#if LCD_DEPTH>=16
312 rb->lcd_set_foreground (LCD_WHITE); 312 rb->lcd_set_foreground (LCD_WHITE);
@@ -318,10 +318,10 @@ enum plugin_status plugin_start(const void* parameter)
318 if(!rb->action_userabort(3*HZ)) 318 if(!rb->action_userabort(3*HZ))
319 roll_credits(); 319 roll_credits();
320 320
321#ifdef HAVE_BACKLIGHT 321
322 /* Turn on backlight timeout (revert to settings) */ 322 /* Turn on backlight timeout (revert to settings) */
323 backlight_use_settings(); 323 backlight_use_settings();
324#endif 324
325 325
326 return PLUGIN_OK; 326 return PLUGIN_OK;
327} 327}