Removes a memory leak

This commit is contained in:
Linus_Probert 2018-03-06 13:50:43 +01:00
parent bac0c62a10
commit cc2b659020
1 changed files with 1 additions and 0 deletions

View File

@ -342,5 +342,6 @@ void map_destroy(Map *map)
item_destroy(linkedlist_pop(&map->items));
timer_destroy(map->renderTimer);
timer_destroy(map->monsterMoveTimer);
free(map);
}