summaryrefslogtreecommitdiff
path: root/apps/plugins/maze.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/maze.c')
-rw-r--r--apps/plugins/maze.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/maze.c b/apps/plugins/maze.c
index 231b602911..e84173944b 100644
--- a/apps/plugins/maze.c
+++ b/apps/plugins/maze.c
@@ -497,7 +497,7 @@ enum plugin_status plugin_start(const void* parameter)
497 (void)parameter; 497 (void)parameter;
498 498
499 /* Turn off backlight timeout */ 499 /* Turn off backlight timeout */
500 backlight_force_on(); /* backlight control in lib/helper.c */ 500 backlight_ignore_timeout();
501 501
502 /* Seed the RNG */ 502 /* Seed the RNG */
503 rb->srand(*rb->current_tick); 503 rb->srand(*rb->current_tick);
@@ -585,6 +585,6 @@ enum plugin_status plugin_start(const void* parameter)
585 lastbutton = button; 585 lastbutton = button;
586 } 586 }
587 /* Turn on backlight timeout (revert to settings) */ 587 /* Turn on backlight timeout (revert to settings) */
588 backlight_use_settings(); /* backlight control in lib/helper.c */ 588 backlight_use_settings();
589 return ((quit == 1) ? PLUGIN_OK : PLUGIN_USB_CONNECTED); 589 return ((quit == 1) ? PLUGIN_OK : PLUGIN_USB_CONNECTED);
590} 590}