diff options
Diffstat (limited to 'apps/plugins/wormlet.c')
| -rw-r--r-- | apps/plugins/wormlet.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/wormlet.c b/apps/plugins/wormlet.c index a2abdba..1c78f33 100644 --- a/apps/plugins/wormlet.c +++ b/apps/plugins/wormlet.c @@ -2334,7 +2334,7 @@ bool launch_wormlet(void) rb->lcd_clear_display(); /* Turn off backlight timeout */ - backlight_force_on(); /* backlight control in lib/helper.c */ + backlight_force_on(rb); /* backlight control in lib/helper.c */ /* start the game */ while (game_result == 1) @@ -2344,7 +2344,7 @@ bool launch_wormlet(void) { case 2: /* Turn on backlight timeout (revert to settings) */ - backlight_use_settings(); /* backlight control in lib/helper.c */ + backlight_use_settings(rb); /* backlight control in lib/helper.c */ return false; break; } |