diff options
author | Bastiaan Olij <mux213@gmail.com> | 2017-11-08 19:56:30 +1100 |
---|---|---|
committer | Bastiaan Olij <mux213@gmail.com> | 2017-11-08 19:56:30 +1100 |
commit | 2a230d571d0eb85bc6017a7e47a7f94ae54fc5cf (patch) | |
tree | 3254f21c5f16af02fcdcf7fd27478cd211c6bb1f /core/os/input_event.h | |
parent | ec77cccb1dab35a6f655cf5946a48cbfc1f598cf (diff) | |
download | redot-engine-2a230d571d0eb85bc6017a7e47a7f94ae54fc5cf.tar.gz |
Increase joystick axis from 8 to 10
Diffstat (limited to 'core/os/input_event.h')
-rw-r--r-- | core/os/input_event.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/core/os/input_event.h b/core/os/input_event.h index f2c8cc802d..de3c0232ff 100644 --- a/core/os/input_event.h +++ b/core/os/input_event.h @@ -122,7 +122,9 @@ enum JoystickList { JOY_AXIS_5 = 5, JOY_AXIS_6 = 6, JOY_AXIS_7 = 7, - JOY_AXIS_MAX = 8, + JOY_AXIS_8 = 8, + JOY_AXIS_9 = 9, + JOY_AXIS_MAX = 10, JOY_ANALOG_LX = JOY_AXIS_0, JOY_ANALOG_LY = JOY_AXIS_1, |