summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/isogfx.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/isogfx.c b/src/isogfx.c
index 16760ac..b715ca8 100644
--- a/src/isogfx.c
+++ b/src/isogfx.c
@@ -135,7 +135,7 @@ IsoGfx* isogfx_new(const IsoGfxDesc* desc) {
135 iso->screen = 135 iso->screen =
136 memstack_alloc_aligned(&iso->stack, screen_size_bytes, alignof(Pixel)); 136 memstack_alloc_aligned(&iso->stack, screen_size_bytes, alignof(Pixel));
137 137
138 iso->watermark = memstack_get_watermark(&iso->stack); 138 iso->watermark = memstack_watermark(&iso->stack);
139 139
140 return iso; 140 return iso;
141 141
@@ -374,7 +374,7 @@ SpriteSheet isogfx_load_sprite_sheet(IsoGfx* iso, const char* filepath) {
374 374
375 bool success = false; 375 bool success = false;
376 SpriteSheet spriteSheet = 0; 376 SpriteSheet spriteSheet = 0;
377 const size_t watermark = memstack_get_watermark(&iso->stack); 377 const size_t watermark = memstack_watermark(&iso->stack);
378 378
379 // Load sprite sheet file. 379 // Load sprite sheet file.
380 printf("Load sprite sheet: %s\n", filepath); 380 printf("Load sprite sheet: %s\n", filepath);