diff options
Diffstat (limited to 'loader/anim-cell.hpp')
-rw-r--r-- | loader/anim-cell.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/loader/anim-cell.hpp b/loader/anim-cell.hpp index 37bbb7d8..ce3f6d54 100644 --- a/loader/anim-cell.hpp +++ b/loader/anim-cell.hpp @@ -1,5 +1,5 @@ #pragma once -#include <memory> +#include "compat/borrowed-ptr.hpp" #include <Corrade/Containers/String.h> namespace floormat { @@ -8,7 +8,7 @@ class anim_atlas; struct anim_cell { - std::shared_ptr<anim_atlas> atlas; + bptr<anim_atlas> atlas; String name; }; |