From 75100e56442e56654c9fb4ca1780875bcce5ee4b Mon Sep 17 00:00:00 2001 From: Fredia Huya-Kouadio Date: Wed, 27 May 2020 02:12:54 -0700 Subject: [PATCH] Provide the ability for clients of the Godot library to add their own command line arguments --- platform/android/java/lib/src/org/godotengine/godot/Godot.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/platform/android/java/lib/src/org/godotengine/godot/Godot.java b/platform/android/java/lib/src/org/godotengine/godot/Godot.java index f27d8620ec0..8ba9b0400f1 100644 --- a/platform/android/java/lib/src/org/godotengine/godot/Godot.java +++ b/platform/android/java/lib/src/org/godotengine/godot/Godot.java @@ -345,7 +345,8 @@ public abstract class Godot extends FragmentActivity implements SensorEventListe return deviceInfo.reqGlEsVersion; } - private String[] getCommandLine() { + @CallSuper + protected String[] getCommandLine() { InputStream is; try { is = getAssets().open("_cl_");