aboutsummaryrefslogtreecommitdiffstats
path: root/src/gameScreen.c
diff options
context:
space:
mode:
authornathansmith117 <thenathansmithsmith@gmail.com>2024-02-22 19:19:43 +0000
committernathansmith117 <thenathansmithsmith@gmail.com>2024-02-22 19:19:43 +0000
commitd6c58243b7b9d90e5e23af2f3c866ddf316cb0fa (patch)
tree0ee4b8533b28eb3e3d4be034c0eb356d83b98734 /src/gameScreen.c
parent1ce1a705c61064e44f83c772b70ee9b208a4c289 (diff)
downloadPenguinYippies-d6c58243b7b9d90e5e23af2f3c866ddf316cb0fa.tar.gz
PenguinYippies-d6c58243b7b9d90e5e23af2f3c866ddf316cb0fa.tar.bz2
PenguinYippies-d6c58243b7b9d90e5e23af2f3c866ddf316cb0fa.zip
Can now use pixel data for collision
Diffstat (limited to 'src/gameScreen.c')
-rw-r--r--src/gameScreen.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gameScreen.c b/src/gameScreen.c
index 179eabd..7331a22 100644
--- a/src/gameScreen.c
+++ b/src/gameScreen.c
@@ -101,6 +101,8 @@ void updateGameScreen(GameScreen* gameScreen, Game* game)
// update clickies.
updateClicky(game, &gameScreen->penguinLol);
+
+ DrawFPS(0, 0);
}
void closeGameScreen(GameScreen* gameScreen)