Explorar el Código

Fixed limitation for number of custom main() arguments on Android.

Limitation was size of the reference table because local refs were not deleted.
Philipp Wiesemann hace 11 años
padre
commit
8cab5ae300
Se han modificado 1 ficheros con 1 adiciones y 0 borrados
  1. 1 0
      src/main/android/SDL_android_main.c

+ 1 - 0
src/main/android/SDL_android_main.c

@@ -47,6 +47,7 @@ int Java_org_libsdl_app_SDLActivity_nativeInit(JNIEnv* env, jclass cls, jobject
                 arg = SDL_strdup(utf);
                 (*env)->ReleaseStringUTFChars(env, string, utf);
             }
+            (*env)->DeleteLocalRef(env, string);
         }
         if (!arg) {
             arg = SDL_strdup("");