From a8f357184fbc7046b873dd2251f4efed8941346d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dominik=20Madar=C3=A1sz?= Date: Mon, 30 Aug 2021 12:00:09 +0200 Subject: [PATCH] small tweak --- code/game/src/world/world.c | 1 + 1 file changed, 1 insertion(+) diff --git a/code/game/src/world/world.c b/code/game/src/world/world.c index 09f5989..17592a9 100644 --- a/code/game/src/world/world.c +++ b/code/game/src/world/world.c @@ -215,6 +215,7 @@ int32_t world_destroy(void) { zpl_mfree(world.chunk_mapping); for (int i = 0; i < zpl_square(world.chunk_amount); i+=1) { zpl_mfree(world.block_mapping[i]); + zpl_mfree(world.outer_block_mapping[i]); } zpl_mfree(world.block_mapping); zpl_mfree(world.outer_block_mapping);