summaryrefslogtreecommitdiff
path: root/apps/plugins/brickmania.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/brickmania.c')
-rw-r--r--apps/plugins/brickmania.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/brickmania.c b/apps/plugins/brickmania.c
index 2530cfc618..d4b774a93d 100644
--- a/apps/plugins/brickmania.c
+++ b/apps/plugins/brickmania.c
@@ -2031,7 +2031,7 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter)
2031 rb->lcd_set_backdrop(NULL); 2031 rb->lcd_set_backdrop(NULL);
2032#endif 2032#endif
2033 /* Turn off backlight timeout */ 2033 /* Turn off backlight timeout */
2034 backlight_force_on(); /* backlight control in lib/helper.c */ 2034 backlight_force_on(rb); /* backlight control in lib/helper.c */
2035 2035
2036 /* now go ahead and have fun! */ 2036 /* now go ahead and have fun! */
2037 while (game_loop()!=1); 2037 while (game_loop()!=1);
@@ -2041,7 +2041,7 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter)
2041 /* Restore user's original backlight setting */ 2041 /* Restore user's original backlight setting */
2042 rb->lcd_setfont(FONT_UI); 2042 rb->lcd_setfont(FONT_UI);
2043 /* Turn on backlight timeout (revert to settings) */ 2043 /* Turn on backlight timeout (revert to settings) */
2044 backlight_use_settings(); /* backlight control in lib/helper.c */ 2044 backlight_use_settings(rb); /* backlight control in lib/helper.c */
2045 2045
2046 return PLUGIN_OK; 2046 return PLUGIN_OK;
2047} 2047}