diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2021-03-23 13:00:24 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-23 13:00:24 +0100 |
commit | 5238f1399d48397cd1c69053f8fd9bac0f1dfe0a (patch) | |
tree | d726abf3fdea183aac75b4123c64ae03072569c4 /platform/iphone | |
parent | ecfa2f8de2feb0fc2fe0e6989c362630ce23f1f2 (diff) | |
parent | a5324787c80ebc55b123ab19db2b23404b1241ec (diff) |
Merge pull request #38054 from aaronfranke/enums
Rename many global enums relating to input
Diffstat (limited to 'platform/iphone')
-rw-r--r-- | platform/iphone/joypad_iphone.mm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/iphone/joypad_iphone.mm b/platform/iphone/joypad_iphone.mm index a0f0eee5d3..45842b38aa 100644 --- a/platform/iphone/joypad_iphone.mm +++ b/platform/iphone/joypad_iphone.mm @@ -287,7 +287,7 @@ void JoypadIPhone::start_processing() { gamepad.dpad.right.isPressed); }; - Input::JoyAxis jx; + Input::JoyAxisValue jx; jx.min = -1; if (element == gamepad.leftThumbstick) { jx.value = gamepad.leftThumbstick.xAxis.value; |