diff options
Diffstat (limited to 'apps/plugins/fire.c')
| -rw-r--r-- | apps/plugins/fire.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/fire.c b/apps/plugins/fire.c index 3cfd1ab..5d6f061 100644 --- a/apps/plugins/fire.c +++ b/apps/plugins/fire.c @@ -332,7 +332,7 @@ void cleanup(void *parameter) gray_release(); #endif /* Turn on backlight timeout (revert to settings) */ - backlight_use_settings(); /* backlight control in lib/helper.c */ + backlight_use_settings(rb); /* backlight control in lib/helper.c */ } /* @@ -423,7 +423,7 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter) rb->lcd_set_backdrop(NULL); #endif /* Turn off backlight timeout */ - backlight_force_on(); /* backlight control in lib/helper.c */ + backlight_force_on(rb); /* backlight control in lib/helper.c */ ret = main(); |