Merge branch 'dev' into shops

Conflicts:
	src/artifact.c
This commit is contained in:
Linus Probert 2019-03-06 22:30:17 +01:00
commit 6009aa17f1
2 changed files with 2 additions and 2 deletions

View File

@ -219,7 +219,7 @@ artifact_render(Artifact *a, Camera *cam)
Position pos = a->sprite->pos;
pos.x += 4;
pos.y += 4;
particle_engine_sparkle(pos, (Dimension) { 24, 24 }, C_PURPLE, false);
particle_engine_sparkle(pos, DIM(24, 24), C_PURPLE, false);
if (a->priceSprite)
sprite_render(a->priceSprite, cam);
}

View File

@ -445,7 +445,7 @@ map_destroy(Map *map)
artifact_destroy(linkedlist_pop(&map->artifacts));
while (map->objects != NULL)
artifact_destroy(linkedlist_pop(&map->objects));
object_destroy(linkedlist_pop(&map->objects));
timer_destroy(map->monsterMoveTimer);
free(map);