JNI_Unload must return the JNI version needed by the native library

(cherry picked from commit eda8d1d842)
This commit is contained in:
Anonymous Maarten
2025-11-26 13:44:29 +01:00
parent 98ed8b98b1
commit f8252fcc91

View File

@@ -207,7 +207,6 @@ Sint32 JNI_OnLoad(void *vm, void *reserved)
{
(void)vm;
(void)reserved;
SDL_Unsupported();
return -1; // JNI_ERR
return 0x00010004; // JNI_VERSION_1_4
}
#endif