diff options
Diffstat (limited to 'loader/anim-atlas.cpp')
-rw-r--r-- | loader/anim-atlas.cpp | 4 |
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; |