diff options
| author | Stanislaw Halik <sthalik@misaki.pl> | 2024-04-11 02:32:46 +0200 |
|---|---|---|
| committer | Stanislaw Halik <sthalik@misaki.pl> | 2024-04-11 02:32:46 +0200 |
| commit | d74228a9f508e96fd93be27cebd20df056e4ef4b (patch) | |
| tree | 4e705be14b7f00516ca9ecd4ab2707e89e35b5a2 /editor/update.cpp | |
| parent | e66bf2074088ff58495619e05cb89b143d5dfd92 (diff) | |
editor: remove StaticArray usage
Diffstat (limited to 'editor/update.cpp')
| -rw-r--r-- | editor/update.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/update.cpp b/editor/update.cpp index 823c8c01..2311d478 100644 --- a/editor/update.cpp +++ b/editor/update.cpp @@ -220,7 +220,7 @@ void app::apply_commands(const key_set& keys) using value_type = key_set::value_type; for (value_type i = key_MIN; i < key_NO_REPEAT; i++) if (const auto k = key(i); keys[k]) - do_key(k, key_modifiers[i]); + do_key(k, key_modifiers.data[i]); } void app::update_world(Ns dt) |
