diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2022-12-01 20:25:05 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2022-12-01 20:32:21 +0100 |
commit | 7c382ef301eb6ac3f55d98d2719cf4ba89d52aab (patch) | |
tree | ffe0a03b98dc65f6670bb32e38ef5902d03d461c /src | |
parent | 4c39db7af4e87f3b8ce92de8f25e88c6cdf12ce9 (diff) |
src/tile: fix gcc build
Diffstat (limited to 'src')
-rw-r--r-- | src/tile.hpp | 2 |
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; |