summaryrefslogtreecommitdiff
path: root/apps/plugins/invadrox.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/invadrox.c')
-rw-r--r--apps/plugins/invadrox.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/apps/plugins/invadrox.c b/apps/plugins/invadrox.c
index e7529895ac..e275129d27 100644
--- a/apps/plugins/invadrox.c
+++ b/apps/plugins/invadrox.c
@@ -1899,8 +1899,9 @@ enum plugin_status plugin_start(UNUSED const void* parameter)
1899{ 1899{
1900 rb->lcd_setfont(FONT_SYSFIXED); 1900 rb->lcd_setfont(FONT_SYSFIXED);
1901 /* Turn off backlight timeout */ 1901 /* Turn off backlight timeout */
1902#ifdef HAVE_BACKLIGHT
1902 backlight_ignore_timeout(); 1903 backlight_ignore_timeout();
1903 1904#endif
1904 /* now go ahead and have fun! */ 1905 /* now go ahead and have fun! */
1905 game_loop(); 1906 game_loop();
1906 1907
@@ -1916,8 +1917,9 @@ enum plugin_status plugin_start(UNUSED const void* parameter)
1916 /* Restore user's original backlight setting */ 1917 /* Restore user's original backlight setting */
1917 rb->lcd_setfont(FONT_UI); 1918 rb->lcd_setfont(FONT_UI);
1918 /* Turn on backlight timeout (revert to settings) */ 1919 /* Turn on backlight timeout (revert to settings) */
1920#ifdef HAVE_BACKLIGHT
1919 backlight_use_settings(); 1921 backlight_use_settings();
1920 1922#endif
1921 return PLUGIN_OK; 1923 return PLUGIN_OK;
1922} 1924}
1923 1925