| commit | eda8d1d8427c84bd27bfc5128173b0fc26cef173 | [log] [tgz] |
|---|---|---|
| author | Anonymous Maarten <anonymous.maarten@gmail.com> | Wed Nov 26 13:44:29 2025 +0100 |
| committer | Anonymous Maarten <madebr@users.noreply.github.com> | Wed Nov 26 14:04:02 2025 +0100 |
| tree | 1e97715d6fb3a336ee814ef73ddd60847e3ca3c1 | |
| parent | 21f93e127bad2b6ba3ec88684ddae47782c36eeb [diff] |
JNI_Unload must return the JNI version needed by the native library
diff --git a/src/core/SDL_core_unsupported.c b/src/core/SDL_core_unsupported.c index ecc862c..d9e81cc 100644 --- a/src/core/SDL_core_unsupported.c +++ b/src/core/SDL_core_unsupported.c
@@ -184,7 +184,6 @@ { (void)vm; (void)reserved; - SDL_Unsupported(); - return -1; // JNI_ERR + return 0x00010004; // JNI_VERSION_1_4 } #endif