From e61dfe405f338d4728efdff877124bb064777f4c Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Mon, 26 Feb 2024 11:28:11 -0500 Subject: [PATCH] android: Fixed dead URL in comment. --- src/core/android/SDL_android.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/android/SDL_android.c b/src/core/android/SDL_android.c index a8a9cddb73..dd53f687b6 100644 --- a/src/core/android/SDL_android.c +++ b/src/core/android/SDL_android.c @@ -820,7 +820,7 @@ JNIEXPORT int JNICALL SDL_JAVA_INTERFACE(nativeRunMain)(JNIEnv *env, jclass cls, argv = SDL_small_alloc(char *, 1 + len + 1, &isstack); /* !!! FIXME: check for NULL */ argc = 0; /* Use the name "app_process" so PHYSFS_platformCalcBaseDir() works. - https://bitbucket.org/MartinFelis/love-android-sdl2/issue/23/release-build-crash-on-start + https://github.com/love2d/love-android/issues/24 */ argv[argc++] = SDL_strdup("app_process"); for (i = 0; i < len; ++i) {