mirror of
https://github.com/Ryujinx/SDL.git
synced 2024-12-22 20:25:38 +00:00
Fixed trying to add a game controller mapping for the accelerometer on iOS
Fixes https://github.com/libsdl-org/SDL/issues/8716 (cherry picked from commit 0e5ea3cc4b98d061688a098836254ab6470b07e8)
This commit is contained in:
parent
49eb375a59
commit
857e5b08c3
|
@ -1834,6 +1834,9 @@ static SDL_bool IOS_JoystickGetGamepadMapping(int device_index, SDL_GamepadMappi
|
|||
if (device == NULL) {
|
||||
return SDL_FALSE;
|
||||
}
|
||||
if (device->accelerometer) {
|
||||
return SDL_FALSE;
|
||||
}
|
||||
|
||||
if (@available(macOS 10.16, iOS 14.0, tvOS 14.0, *)) {
|
||||
int axis = 0;
|
||||
|
|
Loading…
Reference in a new issue