forked from len0rd/rockbox
FS#9326 grammar fix by Clément Pit--Claudel
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18343 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
1f336c7ef1
commit
4162e6fbe3
1 changed files with 2 additions and 1 deletions
|
|
@ -508,7 +508,8 @@ static void refresh_board (void)
|
|||
rb->lcd_putsxy (BOARD_X + CUBE_SIZE * BOARD_W - 24, BOARD_Y, str);
|
||||
rb->snprintf (str, sizeof (str), "Score: %d", player.score);
|
||||
rb->lcd_putsxy (BOARD_X, BOARD_Y + CUBE_SIZE * BOARD_H - 8, str);
|
||||
rb->snprintf (str, sizeof (str), "%d Lives", player.lives);
|
||||
rb->snprintf (str, sizeof (str),
|
||||
(player.lives != 1) ? "%d Lives" : "%d Life", player.lives);
|
||||
#if LCD_DEPTH>=2
|
||||
rb->lcd_putsxy (BOARD_X + CUBE_SIZE * BOARD_W - 60,
|
||||
BOARD_Y + CUBE_SIZE * BOARD_H - 8, str);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue