summaryrefslogtreecommitdiffhomepage
path: root/editor/ground-editor.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'editor/ground-editor.cpp')
-rw-r--r--editor/ground-editor.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/editor/ground-editor.cpp b/editor/ground-editor.cpp
index 0f67853e..2a74952c 100644
--- a/editor/ground-editor.cpp
+++ b/editor/ground-editor.cpp
@@ -17,7 +17,7 @@ ground_editor::ground_editor()
void ground_editor::load_atlases()
{
- for (const auto& atlas : loader.ground_atlases("floor.json"_s))
+ for (const auto& atlas : loader.ground_atlases("ground.json"_s))
{
auto& [_, vec] = _permutation;
vec.reserve(atlas->num_tiles());
@@ -41,7 +41,7 @@ std::shared_ptr<ground_atlas> ground_editor::atlas(StringView str)
fm_throw("no such atlas: {}"_cf, str);
}
-StringView ground_editor::name() const noexcept { return "floor"_s; }
+StringView ground_editor::name() const noexcept { return "ground"_s; }
void ground_editor::clear_selection()
{