Skip to content

Commit 63b8a3c

Browse files
committed
Small fix to score display.
1 parent 85e282c commit 63b8a3c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

SadExperiments/Games/PacMan/Header.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ static ColoredString GetTitle(string text) =>
2929

3030
public void PrintScore(int score)
3131
{
32-
Surface.Print(_scorePosition, _scoreTitle + $"{score:000}");
32+
Surface.Print(_scorePosition, _scoreTitle + $"{score:000} ");
3333
}
3434

3535
public void PrintLives(int lives)

0 commit comments

Comments
 (0)