diff options
| author | Stanislaw Halik <sthalik@misaki.pl> | 2024-02-11 08:53:20 +0100 |
|---|---|---|
| committer | Stanislaw Halik <sthalik@misaki.pl> | 2024-02-11 08:53:20 +0100 |
| commit | ffcaa950516c41a1aa73d5c6742f8a8af5fb355d (patch) | |
| tree | 83065b1a39b0961cad57b0a3cc01ca6d896fdef9 /editor | |
| parent | 017cb08bf33608f1ceb8d59800a8d1d2f9d5d455 (diff) | |
loader: change a few misleading function names
Diffstat (limited to 'editor')
| -rw-r--r-- | editor/ground-editor.cpp | 2 | ||||
| -rw-r--r-- | editor/wall-editor.cpp | 2 |
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; } |
