mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-10 15:01:43 +00:00
Miria: Fix Group Policy related crashes (#2212)
We actually don't need to init sensors or haptic to get motion or rumble working on game controllers. This fix a group policy issue on some Windows 10 Pro when trying to init the SDL2 sensors APIs.
This commit is contained in:
parent
e520eecb5b
commit
84415eaf00
1 changed files with 1 additions and 1 deletions
|
@ -25,7 +25,7 @@ namespace Ryujinx.Input.SDL2
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private const uint SdlInitFlags = SDL_INIT_EVENTS | SDL_INIT_GAMECONTROLLER | SDL_INIT_JOYSTICK | SDL_INIT_HAPTIC | SDL_INIT_SENSOR;
|
private const uint SdlInitFlags = SDL_INIT_EVENTS | SDL_INIT_GAMECONTROLLER | SDL_INIT_JOYSTICK;
|
||||||
|
|
||||||
private bool _isRunning;
|
private bool _isRunning;
|
||||||
private uint _refereceCount;
|
private uint _refereceCount;
|
||||||
|
|
Loading…
Reference in a new issue