diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2024-03-18 01:45:19 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2024-03-19 14:32:18 +0100 |
commit | 151e6911a8aa56749edbbf0c15ab04752d96c2f3 (patch) | |
tree | 06fcf3d6551d1945b5717458aa09222c947ede04 /editor/app.cpp | |
parent | e77dc91b5d3e6a5181776a81cee2c3164c7b3cc9 (diff) |
ccc
Diffstat (limited to 'editor/app.cpp')
-rw-r--r-- | editor/app.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editor/app.cpp b/editor/app.cpp index 35aa1230..c8c5aa0f 100644 --- a/editor/app.cpp +++ b/editor/app.cpp @@ -32,7 +32,7 @@ shared_ptr_wrapper<critter> app::ensure_player_character(world& w) return w.ensure_player_character(_character_id); } -void app::reset_world(class world&& w_) +void app::reset_world(class world&& wʹ) { if (!M) return; @@ -51,7 +51,7 @@ void app::reset_world(class world&& w_) _render_all_z_levels = true; _timestamp = 0; - auto& w = M->reset_world(move(w_)); + auto& w = M->reset_world(move(wʹ)); w.collect(true); ensure_player_character(w); update_cursor_tile(pixel); |