diff options
Diffstat (limited to 'editor/update.cpp')
-rw-r--r-- | editor/update.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/editor/update.cpp b/editor/update.cpp index 73e5cb00..33c5243c 100644 --- a/editor/update.cpp +++ b/editor/update.cpp @@ -263,13 +263,14 @@ auto app::get_z_bounds() -> z_bounds void app::update(float dt) { update_cursor_tile(cursor.pixel); + tests_pre_update(); apply_commands(keys); update_character(dt); update_world(dt); do_camera(dt, keys, get_key_modifiers()); clear_non_repeated_keys(); set_cursor(); - + tests_post_update(); M->world().maybe_collect(); } |