summaryrefslogtreecommitdiffhomepage
path: root/editor
diff options
context:
space:
mode:
Diffstat (limited to 'editor')
-rw-r--r--editor/ground-editor.cpp2
-rw-r--r--editor/wall-editor.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/editor/ground-editor.cpp b/editor/ground-editor.cpp
index 653ad122..4ab697ee 100644
--- a/editor/ground-editor.cpp
+++ b/editor/ground-editor.cpp
@@ -33,7 +33,7 @@ void ground_editor::load_atlases()
if (g.name != loader.INVALID) [[likely]]
(void)loader.ground_atlas(g.name);
else
- loader.make_invalid_ground_atlas();
+ loader.invalid_ground_atlas();
fm_assert(g.atlas);
_atlases[g.name] = &g;
}
diff --git a/editor/wall-editor.cpp b/editor/wall-editor.cpp
index 1d2e7cb3..1e50290b 100644
--- a/editor/wall-editor.cpp
+++ b/editor/wall-editor.cpp
@@ -55,7 +55,7 @@ void wall_editor::load_atlases()
if (wa.name != loader.INVALID) [[likely]]
(void)loader.wall_atlas(wa.name);
else
- loader.make_invalid_wall_atlas();
+ loader.invalid_wall_atlas();
fm_assert(wa.atlas);
_atlases[wa.name] = &wa;
}