mirror of https://github.com/encounter/SDL.git
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() {
|
private void initializeUSB() {
|
||||||
mUsbManager = (UsbManager)mContext.getSystemService(Context.USB_SERVICE);
|
mUsbManager = (UsbManager)mContext.getSystemService(Context.USB_SERVICE);
|
||||||
|
if (mUsbManager == null) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
// Logging
|
// Logging
|
||||||
|
|
Loading…
Reference in New Issue