1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-06 12:20:30 +00:00

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

@@ -404,7 +404,7 @@ public class Godot extends Activity implements SensorEventListener, IDownloaderC
new_cmdline = new String[2];
}
new_cmdline[cll] = "--main_pack";
new_cmdline[cll] = "--main-pack";
new_cmdline[cll + 1] = expansion_pack_path;
command_line = new_cmdline;
}