summaryrefslogtreecommitdiffhomepage
path: root/src/tile.hpp
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2024-01-11 20:08:27 +0100
committerStanislaw Halik <sthalik@misaki.pl>2024-01-11 20:08:27 +0100
commiteef9e53d17bf69a5a362efb21045502159acba8e (patch)
tree4d41ad8a3d528f23720ecc20b917ba0aa4f947d4 /src/tile.hpp
parent6fe22e25a0563c34ced759d09978ac1e99364bfc (diff)
try to fix gcc build
Diffstat (limited to 'src/tile.hpp')
-rw-r--r--src/tile.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tile.hpp b/src/tile.hpp
index a195eec4..3f691567 100644
--- a/src/tile.hpp
+++ b/src/tile.hpp
@@ -8,8 +8,8 @@ class anim_atlas;
struct tile_proto final
{
- std::shared_ptr<ground_atlas> ground_atlas;
- std::shared_ptr<wall_atlas> wall_north_atlas, wall_west_atlas;
+ std::shared_ptr<class ground_atlas> ground_atlas;
+ std::shared_ptr<class wall_atlas> wall_north_atlas, wall_west_atlas;
variant_t ground_variant = 0, wall_north_variant = 0, wall_west_variant = 0;
tile_image_proto ground() const noexcept;