diff options
Diffstat (limited to 'loader/wall-cell.hpp')
-rw-r--r-- | loader/wall-cell.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/loader/wall-cell.hpp b/loader/wall-cell.hpp index 541a8339..690896c2 100644 --- a/loader/wall-cell.hpp +++ b/loader/wall-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 wall_atlas; struct wall_cell { - std::shared_ptr<wall_atlas> atlas; + bptr<wall_atlas> atlas; String name; static Array<wall_cell> load_atlases_from_json(); |