summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2022-11-14 17:38:16 +0100
committerStanislaw Halik <sthalik@misaki.pl>2022-11-14 17:38:16 +0100
commit0c7cf38b33534db1ea8da855f1ca02b3ca5ccea5 (patch)
treeaaf4a233c51201ee6062036748ca3ac394cd7b0e
parentf3dccbda61f4880d1ad8be4e721a3e0d14023c5e (diff)
editor: fix harmless clang warning
-rw-r--r--editor/app.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/app.hpp b/editor/app.hpp
index 5a52ef58..5b4497b0 100644
--- a/editor/app.hpp
+++ b/editor/app.hpp
@@ -106,7 +106,7 @@ private:
wireframe_mesh<wireframe::box> _wireframe_box {_wireframe_texture};
editor _editor;
key_set keys;
- std::array<int, key_set::COUNT> key_modifiers;
+ std::array<int, key_set::COUNT> key_modifiers = {};
cursor_state cursor;
};