summaryrefslogtreecommitdiffhomepage
path: root/editor/ctor.cpp
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2024-04-11 02:32:46 +0200
committerStanislaw Halik <sthalik@misaki.pl>2024-04-11 02:32:46 +0200
commitd74228a9f508e96fd93be27cebd20df056e4ef4b (patch)
tree4e705be14b7f00516ca9ecd4ab2707e89e35b5a2 /editor/ctor.cpp
parente66bf2074088ff58495619e05cb89b143d5dfd92 (diff)
editor: remove StaticArray usage
Diffstat (limited to 'editor/ctor.cpp')
-rw-r--r--editor/ctor.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/editor/ctor.cpp b/editor/ctor.cpp
index 6b35b34c..6e7e435f 100644
--- a/editor/ctor.cpp
+++ b/editor/ctor.cpp
@@ -15,7 +15,8 @@ app::app(fm_settings&& opts) :
_wireframe{InPlaceInit},
_tests{tests_data_::make()},
_editor{InPlaceInit, this},
- keys_{InPlaceInit, 0u}
+ keys_{InPlaceInit, 0u},
+ key_modifiers{}
{
reset_world();
auto& w = M->world();