diff options
author | hondres <liu.gam3@gmail.com> | 2016-01-28 20:53:15 +0100 |
---|---|---|
committer | hondres <liu.gam3@gmail.com> | 2016-01-28 20:53:15 +0100 |
commit | 54d53e0a78d6da2e6a2c9b74a144ba6f823b80ca (patch) | |
tree | 78726d063de0920b9aa971a13ec5443ed0f02018 | |
parent | 0c7e7e2c2880565ef3b2d7455e89aee9373b7b8f (diff) |
fix dpad left/right not showing correctly in project settings
-rw-r--r-- | tools/editor/project_settings.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/editor/project_settings.cpp b/tools/editor/project_settings.cpp index 6c5e18ec9a..cbac870a6b 100644 --- a/tools/editor/project_settings.cpp +++ b/tools/editor/project_settings.cpp @@ -474,7 +474,7 @@ void ProjectSettings::_update_actions() { case InputEvent::JOYSTICK_BUTTON: { String str = "Device "+itos(ie.device)+", Button "+itos(ie.joy_button.button_index); - if (ie.joy_button.button_index>=0 && ie.joy_button.button_index<14) + if (ie.joy_button.button_index>=0 && ie.joy_button.button_index<JOY_BUTTON_MAX) str+=String()+" ("+_button_names[ie.joy_button.button_index]+")."; else str+="."; |