mirror of
https://github.com/shadps4-emu/ext-SDL.git
synced 2025-02-03 17:32:33 +00:00
Fixed crash on Windows Subsystem for Android, which doesn't have a USB manager.
Fixes https://github.com/libsdl-org/SDL/issues/5133
This commit is contained in:
parent
ab6d0d4d50
commit
2363ddc330
@ -141,6 +141,9 @@ public class HIDDeviceManager {
|
||||
|
||||
private void initializeUSB() {
|
||||
mUsbManager = (UsbManager)mContext.getSystemService(Context.USB_SERVICE);
|
||||
if (mUsbManager == null) {
|
||||
return;
|
||||
}
|
||||
|
||||
/*
|
||||
// Logging
|
||||
|
Loading…
x
Reference in New Issue
Block a user