summaryrefslogtreecommitdiffhomepage
path: root/loader/anim-atlas.cpp
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2024-02-11 02:29:26 +0100
committerStanislaw Halik <sthalik@misaki.pl>2024-02-11 08:49:52 +0100
commitc40f3dc1505439acd34b5fff12ea0a570920f98d (patch)
tree8e73438f8f03295dd3285ba1fbc044693bafe230 /loader/anim-atlas.cpp
parent7abfbd9961072bb4e358c675d417cc8e8bb16d70 (diff)
wip atlas
Diffstat (limited to 'loader/anim-atlas.cpp')
-rw-r--r--loader/anim-atlas.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/loader/anim-atlas.cpp b/loader/anim-atlas.cpp
index 6fca5a49..9f8de563 100644
--- a/loader/anim-atlas.cpp
+++ b/loader/anim-atlas.cpp
@@ -116,9 +116,9 @@ const anim_cell& loader_impl::make_invalid_anim_atlas()
.nframes = 1,
};
auto atlas = std::make_shared<class anim_atlas>(INVALID, make_error_texture(size), std::move(def));
- auto info = anim_cell{
- .name = INVALID,
+ auto info = anim_cell {
.atlas = atlas,
+ .name = INVALID,
};
invalid_anim_atlas = Pointer<anim_cell>{ InPlace, std::move(info) };
return *invalid_anim_atlas;