diff options
author | Eric M <itsjusteza@gmail.com> | 2021-02-24 22:25:15 +1000 |
---|---|---|
committer | Eric M <itsjusteza@gmail.com> | 2021-02-24 23:16:22 +1000 |
commit | d91e915d7978b36e0741f6e0c01173bc1b72a97e (patch) | |
tree | 73cc41c760005fbe419684d66798ae342737df74 /core/input | |
parent | a9304723192cc361188ced958415bad06bc08b7f (diff) |
Fixed 'nonexistent action' errors spammed at startup on OSX
Diffstat (limited to 'core/input')
-rw-r--r-- | core/input/input_map.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/input/input_map.cpp b/core/input/input_map.cpp index 029808ebbe..e0b25fa092 100644 --- a/core/input/input_map.cpp +++ b/core/input/input_map.cpp @@ -694,7 +694,7 @@ void InputMap::load_default() { // For the editor, only add keyboard actions. if (iek.is_valid()) { - action_add_event(fullname, I->get()); + action_add_event(name, I->get()); } } } |