소스 검색

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
Sam Lantinga 3 년 전
부모
커밋
b559a4accc
1개의 변경된 파일0개의 추가작업 그리고 4개의 파일을 삭제
  1. 0 4
      src/hidapi/android/hid.cpp

+ 0 - 4
src/hidapi/android/hid.cpp

@@ -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 */