Skip to content

Commit

Permalink
Display difficulty in all caps in Game Over dialog (#107)
Browse files Browse the repository at this point in the history
  • Loading branch information
plbrault authored Sep 3, 2023
1 parent d50665f commit 6b5b58e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/game_objects/views/game_over_dialog_view.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def __init__(self, game_over_dialog):
self._uptime_text_surface = FONT_PRIMARY_LARGE.render(
'UPTIME: ' + game_over_dialog.uptime, False, Color.WHITE)
self._difficulty_text_surface = FONT_PRIMARY_LARGE.render(
'DIFFICULTY: ' + game_over_dialog.difficulty, False, Color.WHITE)
'DIFFICULTY: ' + game_over_dialog.difficulty.upper(), False, Color.WHITE)
self._score_text_surface = FONT_PRIMARY_LARGE.render(
'SCORE: ' + str(game_over_dialog.score), False, Color.WHITE)

Expand Down

0 comments on commit 6b5b58e

Please sign in to comment.