diff options
Diffstat (limited to 'apps/plugins/wormlet.c')
-rw-r--r-- | apps/plugins/wormlet.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/apps/plugins/wormlet.c b/apps/plugins/wormlet.c index b18cdc21f8..419b258fe5 100644 --- a/apps/plugins/wormlet.c +++ b/apps/plugins/wormlet.c @@ -2415,9 +2415,10 @@ static bool launch_wormlet(void) rb->lcd_clear_display(); +#ifdef HAVE_BACKLIGHT /* Turn off backlight timeout */ backlight_ignore_timeout(); - +#endif /* start the game */ while (game_result == 1) game_result = run(); @@ -2425,8 +2426,10 @@ static bool launch_wormlet(void) switch (game_result) { case 2: +#ifdef HAVE_BACKLIGHT /* Turn on backlight timeout (revert to settings) */ backlight_use_settings(); +#endif return false; break; } |