summaryrefslogtreecommitdiff
path: root/apps/plugins/xobox.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/xobox.c')
-rw-r--r--apps/plugins/xobox.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/apps/plugins/xobox.c b/apps/plugins/xobox.c
index e2cccba8fc..5ed1fbb612 100644
--- a/apps/plugins/xobox.c
+++ b/apps/plugins/xobox.c
@@ -1303,9 +1303,10 @@ enum plugin_status plugin_start (const void *parameter)
1303 rb->lcd_set_backdrop(NULL); 1303 rb->lcd_set_backdrop(NULL);
1304#endif 1304#endif
1305 1305
1306#ifdef HAVE_BACKLIGHT
1306 /* Turn off backlight timeout */ 1307 /* Turn off backlight timeout */
1307 backlight_ignore_timeout(); 1308 backlight_ignore_timeout();
1308 1309#endif
1309 highscore_load(SCORE_FILE, highscores, NUM_SCORES); 1310 highscore_load(SCORE_FILE, highscores, NUM_SCORES);
1310 1311
1311 if (!load_game()) { 1312 if (!load_game()) {
@@ -1315,8 +1316,10 @@ enum plugin_status plugin_start (const void *parameter)
1315 randomize (); 1316 randomize ();
1316 ret = xobox_loop (); 1317 ret = xobox_loop ();
1317 1318
1319#ifdef HAVE_BACKLIGHT
1318 /* Turn on backlight timeout (revert to settings) */ 1320 /* Turn on backlight timeout (revert to settings) */
1319 backlight_use_settings(); 1321 backlight_use_settings();
1322#endif
1320 rb->lcd_setfont (FONT_UI); 1323 rb->lcd_setfont (FONT_UI);
1321 1324
1322 highscore_save(SCORE_FILE, highscores, NUM_SCORES); 1325 highscore_save(SCORE_FILE, highscores, NUM_SCORES);