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 79ebfefbd4..6295862eac 100644
--- a/apps/plugins/brickmania.c
+++ b/apps/plugins/brickmania.c
@@ -2427,7 +2427,7 @@ enum plugin_status plugin_start(const void* parameter)
2427 rb->lcd_set_backdrop(NULL); 2427 rb->lcd_set_backdrop(NULL);
2428#endif 2428#endif
2429 /* Turn off backlight timeout */ 2429 /* Turn off backlight timeout */
2430 backlight_force_on(); /* backlight control in lib/helper.c */ 2430 backlight_ignore_timeout();
2431 2431
2432 /* now go ahead and have fun! */ 2432 /* now go ahead and have fun! */
2433 rb->srand( *rb->current_tick ); 2433 rb->srand( *rb->current_tick );
@@ -2458,7 +2458,7 @@ enum plugin_status plugin_start(const void* parameter)
2458 /* Restore user's original backlight setting */ 2458 /* Restore user's original backlight setting */
2459 rb->lcd_setfont(FONT_UI); 2459 rb->lcd_setfont(FONT_UI);
2460 /* Turn on backlight timeout (revert to settings) */ 2460 /* Turn on backlight timeout (revert to settings) */
2461 backlight_use_settings(); /* backlight control in lib/helper.c */ 2461 backlight_use_settings();
2462 2462
2463 return PLUGIN_OK; 2463 return PLUGIN_OK;
2464} 2464}