Fix broken APK expansion due to missed option renames

Command line options were refactored for 3.0 to follow the common usage
of double-dashed long options, but `--main-pack` went through the cracks.

Fixes #16533.
This commit is contained in:
Rémi Verschelde 2018-02-13 22:41:19 +01:00
parent 8944773934
commit e3658a6464
2 changed files with 2 additions and 2 deletions

View file

@ -926,7 +926,7 @@ JNIEXPORT void JNICALL Java_org_godotengine_godot_GodotLib_setup(JNIEnv *env, jo
} else {
//__android_log_print(ANDROID_LOG_INFO,"godot","cmdline arg %i is: %s\n",i,rawString);
if (strcmp(rawString, "-main_pack") == 0)
if (strcmp(rawString, "--main-pack") == 0)
use_apk_expansion = true;
}