summaryrefslogtreecommitdiffhomepage
path: root/loader/scenery-traits.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'loader/scenery-traits.cpp')
-rw-r--r--loader/scenery-traits.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/loader/scenery-traits.cpp b/loader/scenery-traits.cpp
index d8add93b..fcc00d02 100644
--- a/loader/scenery-traits.cpp
+++ b/loader/scenery-traits.cpp
@@ -1,6 +1,5 @@
#include "scenery-traits.hpp"
#include "compat/assert.hpp"
-#include "compat/vector-wrapper.hpp"
#include "atlas-loader-storage.hpp"
#include "scenery-cell.hpp"
#include "loader.hpp"
@@ -27,7 +26,7 @@ String& scenery_traits::name_of(Cell& x) { return x.name; }
void scenery_traits::atlas_list(Storage& s)
{
fm_debug_assert(s.name_map.empty());
- s.cell_array = scenery_cell::load_atlases_from_json().vec;
+ s.cell_array = scenery_cell::load_atlases_from_json();
s.name_map[loader.INVALID] = -1uz;
}