diff options
author | Ariel Manzur <ariel@godotengine.org> | 2018-01-24 19:06:35 -0300 |
---|---|---|
committer | Ariel Manzur <ariel@godotengine.org> | 2018-01-24 19:12:54 -0300 |
commit | 81426ff0a84b0b7f9c52f6f908fe30bec538fa8b (patch) | |
tree | 75ea0bee44c5fb37e12483cd423c0fc0376b565e /core/os/input_event.h | |
parent | 81d7b015967655ff724f0a11d9262e6bd4166c98 (diff) | |
download | redot-engine-81426ff0a84b0b7f9c52f6f908fe30bec538fa8b.tar.gz |
- Improves portability in joystick buttons enum
- Fixes linking bug in modules split library
Diffstat (limited to 'core/os/input_event.h')
-rw-r--r-- | core/os/input_event.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/os/input_event.h b/core/os/input_event.h index 72057659d2..ad754d0d1f 100644 --- a/core/os/input_event.h +++ b/core/os/input_event.h @@ -110,8 +110,8 @@ enum JoystickList { JOY_WII_C = JOY_BUTTON_5, JOY_WII_Z = JOY_BUTTON_6, - JOY_WII_MINUS = JOY_BUTTON_9, - JOY_WII_PLUS = JOY_BUTTON_10, + JOY_WII_MINUS = JOY_BUTTON_10, + JOY_WII_PLUS = JOY_BUTTON_11, // end of history |