Fixed Android crash when SDL_HIDAPI_DISABLED set to 1

The Java code needs the native functions to be implemented, even if they're not surfaced via the C API.

Fixes https://github.com/libsdl-org/SDL/issues/5326
This commit is contained in:
Sam Lantinga 2022-03-19 10:39:22 -07:00
parent a485ffc3c8
commit b559a4accc

View File

@ -24,8 +24,6 @@
//
// This layer glues the hidapi API to Android's USB and BLE stack.
#if !SDL_HIDAPI_DISABLED
#include "SDL_hints.h"
#include "../../core/android/SDL_android.h"
@ -1335,5 +1333,3 @@ int hid_exit(void)
}
}
#endif /* SDL_HIDAPI_DISABLED */