diff --git a/src/tileset.c b/src/tileset.c index aae35f5..c7c1b6d 100644 --- a/src/tileset.c +++ b/src/tileset.c @@ -169,7 +169,6 @@ Tileset* tileset_from_json(cJSON* json) { CHECK(def->shape != NULL, "Failed to create a shape for tiledef"); cJSON_ArrayForEach(vertex_json, shape_data) { Vector vertex = json_array_to_vector(vertex_json); - LOG_INFO("vertex %f %f", vertex.x, vertex.y); shape_add_point(self->tiledefs[id->valueint].shape, vertex); } cJSON_Delete(data_json); @@ -220,4 +219,4 @@ Sprite* tiledef_get_sprite(const TileDef* self) { Shape* tiledef_get_shape(TileDef* self) { return self->shape; -} \ No newline at end of file +}