summaryrefslogtreecommitdiff
path: root/apps/plugins/invadrox.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/invadrox.c')
-rw-r--r--apps/plugins/invadrox.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/invadrox.c b/apps/plugins/invadrox.c
index 264d5725dd..527ec9587f 100644
--- a/apps/plugins/invadrox.c
+++ b/apps/plugins/invadrox.c
@@ -1766,7 +1766,7 @@ enum plugin_status plugin_start(struct plugin_api* api, UNUSED void* parameter)
1766 1766
1767 rb->lcd_setfont(FONT_SYSFIXED); 1767 rb->lcd_setfont(FONT_SYSFIXED);
1768 /* Turn off backlight timeout */ 1768 /* Turn off backlight timeout */
1769 backlight_force_on(); /* backlight control in lib/helper.c */ 1769 backlight_force_on(rb); /* backlight control in lib/helper.c */
1770 1770
1771 /* now go ahead and have fun! */ 1771 /* now go ahead and have fun! */
1772 game_loop(); 1772 game_loop();
@@ -1784,7 +1784,7 @@ enum plugin_status plugin_start(struct plugin_api* api, UNUSED void* parameter)
1784 /* Restore user's original backlight setting */ 1784 /* Restore user's original backlight setting */
1785 rb->lcd_setfont(FONT_UI); 1785 rb->lcd_setfont(FONT_UI);
1786 /* Turn on backlight timeout (revert to settings) */ 1786 /* Turn on backlight timeout (revert to settings) */
1787 backlight_use_settings(); /* backlight control in lib/helper.c */ 1787 backlight_use_settings(rb); /* backlight control in lib/helper.c */
1788 1788
1789 return PLUGIN_OK; 1789 return PLUGIN_OK;
1790} 1790}