summaryrefslogtreecommitdiffhomepage
path: root/games/koala_seasons/koala_seasons.c
diff options
context:
space:
mode:
Diffstat (limited to 'games/koala_seasons/koala_seasons.c')
-rw-r--r--games/koala_seasons/koala_seasons.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/games/koala_seasons/koala_seasons.c b/games/koala_seasons/koala_seasons.c
index 8657d3d5..479fab85 100644
--- a/games/koala_seasons/koala_seasons.c
+++ b/games/koala_seasons/koala_seasons.c
@@ -57,7 +57,7 @@ int main(void) {
InitWindow(screenWidth, screenHeight, windowTitle);
// Load global data here (assets that must be available in all screens, i.e. fonts)
- font = LoadSpriteFont("resources/graphics/mainfont.png");
+ font = LoadFont("resources/graphics/mainfont.png");
atlas01 = LoadTexture("resources/graphics/atlas01.png");
atlas02 = LoadTexture("resources/graphics/atlas02.png");
@@ -114,7 +114,7 @@ int main(void) {
UnloadTexture(atlas01);
UnloadTexture(atlas02);
- UnloadSpriteFont(font);
+ UnloadFont(font);
UnloadShader(colorBlend); // Unload color overlay blending shader