diff options
author | nathansmith117 <thenathansmithsmith@gmail.com> | 2024-05-07 00:57:31 +0000 |
---|---|---|
committer | nathansmith117 <thenathansmithsmith@gmail.com> | 2024-05-07 00:57:31 +0000 |
commit | 32792bb121ea2bb1a96eca821061a3a9b13a6a78 (patch) | |
tree | 7ee5bd241b37d643db0e5a55ed27419215adbed2 /src/shooterScreen.c | |
parent | 529bec904716fc91ecd937a06bf81ea150cf3c72 (diff) | |
download | PenguinYippies-32792bb121ea2bb1a96eca821061a3a9b13a6a78.tar.gz PenguinYippies-32792bb121ea2bb1a96eca821061a3a9b13a6a78.tar.bz2 PenguinYippies-32792bb121ea2bb1a96eca821061a3a9b13a6a78.zip |
Shooter mini game works
Diffstat (limited to 'src/shooterScreen.c')
-rw-r--r-- | src/shooterScreen.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shooterScreen.c b/src/shooterScreen.c index d9daaa8..91e3b11 100644 --- a/src/shooterScreen.c +++ b/src/shooterScreen.c @@ -246,7 +246,7 @@ void drawUIShooterScreen(ShooterScreen* shooterScreen, Game* game) size_t bufSize = 100; char buf[bufSize]; - snprintf(buf, bufSize, "Time playing: %d\nPenguins still awake: %d", + snprintf(buf, bufSize, "They are sleeping not dead (:\nTime playing: %d\nPenguins still awake: %d", (int)(GetTime() - shooterScreen->startTime), SHOOTER_PENGUIN_COUNT - shooterScreen->killCount); |