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.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/plugins/xobox.c b/apps/plugins/xobox.c
index 8490d6bae6..f5d10578cd 100644
--- a/apps/plugins/xobox.c
+++ b/apps/plugins/xobox.c
@@ -508,7 +508,8 @@ static void refresh_board (void)
508 rb->lcd_putsxy (BOARD_X + CUBE_SIZE * BOARD_W - 24, BOARD_Y, str); 508 rb->lcd_putsxy (BOARD_X + CUBE_SIZE * BOARD_W - 24, BOARD_Y, str);
509 rb->snprintf (str, sizeof (str), "Score: %d", player.score); 509 rb->snprintf (str, sizeof (str), "Score: %d", player.score);
510 rb->lcd_putsxy (BOARD_X, BOARD_Y + CUBE_SIZE * BOARD_H - 8, str); 510 rb->lcd_putsxy (BOARD_X, BOARD_Y + CUBE_SIZE * BOARD_H - 8, str);
511 rb->snprintf (str, sizeof (str), "%d Lives", player.lives); 511 rb->snprintf (str, sizeof (str),
512 (player.lives != 1) ? "%d Lives" : "%d Life", player.lives);
512#if LCD_DEPTH>=2 513#if LCD_DEPTH>=2
513 rb->lcd_putsxy (BOARD_X + CUBE_SIZE * BOARD_W - 60, 514 rb->lcd_putsxy (BOARD_X + CUBE_SIZE * BOARD_W - 60,
514 BOARD_Y + CUBE_SIZE * BOARD_H - 8, str); 515 BOARD_Y + CUBE_SIZE * BOARD_H - 8, str);