diff options
| author | Stanislaw Halik <sthalik@misaki.pl> | 2024-01-11 14:29:53 +0100 |
|---|---|---|
| committer | Stanislaw Halik <sthalik@misaki.pl> | 2024-01-11 14:45:29 +0100 |
| commit | d74df1b763979d281f76f3f30543aee8d8a638b7 (patch) | |
| tree | 08939a34160b261c37644595aa8702dd0689d74f /editor/ground-editor.cpp | |
| parent | 7867213a01fcabb1f05b1836c2ca59dc3bb2132f (diff) | |
rename floor -> ground
Diffstat (limited to 'editor/ground-editor.cpp')
| -rw-r--r-- | editor/ground-editor.cpp | 4 |
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() { |
