summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2022-12-01 20:25:05 +0100
committerStanislaw Halik <sthalik@misaki.pl>2022-12-01 20:32:21 +0100
commit7c382ef301eb6ac3f55d98d2719cf4ba89d52aab (patch)
treeffe0a03b98dc65f6670bb32e38ef5902d03d461c
parent4c39db7af4e87f3b8ce92de8f25e88c6cdf12ce9 (diff)
src/tile: fix gcc build
-rw-r--r--src/tile.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tile.hpp b/src/tile.hpp
index 23b50161..387f7ff0 100644
--- a/src/tile.hpp
+++ b/src/tile.hpp
@@ -27,7 +27,7 @@ struct tile_proto final
std::shared_ptr<tile_atlas> ground_atlas, wall_north_atlas, wall_west_atlas;
std::shared_ptr<anim_atlas> scenery_atlas;
variant_t ground_variant = 0, wall_north_variant = 0, wall_west_variant = 0;
- scenery scenery_frame;
+ struct scenery scenery_frame;
enum pass_mode pass_mode = pass_mode::pass_shoot_through;
tile_image_proto ground() const noexcept;