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 204c250a89..531ad1f5b7 100644
--- a/apps/plugins/credits.c
+++ b/apps/plugins/credits.c
@@ -37,7 +37,7 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter)
37 rb = api; 37 rb = api;
38 38
39 /* Turn off backlight timeout */ 39 /* Turn off backlight timeout */
40 backlight_force_on(); /* backlight control in lib/helper.c */ 40 backlight_force_on(rb); /* backlight control in lib/helper.c */
41 41
42 rb->show_logo(); 42 rb->show_logo();
43#ifdef HAVE_LCD_CHARCELLS 43#ifdef HAVE_LCD_CHARCELLS
@@ -57,7 +57,7 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter)
57 57
58end_of_proc: 58end_of_proc:
59 /* Turn on backlight timeout (revert to settings) */ 59 /* Turn on backlight timeout (revert to settings) */
60 backlight_use_settings(); /* backlight control in lib/helper.c */ 60 backlight_use_settings(rb); /* backlight control in lib/helper.c */
61 61
62 return PLUGIN_OK; 62 return PLUGIN_OK;
63} 63}