feat: disable launcher check to test on Pico

This commit is contained in:
Emanuele Disco 2023-08-15 08:40:10 +09:00
parent 2e4a62dd11
commit 97266df8c5

View file

@ -270,7 +270,7 @@ import java.util.Locale;
//to allow the launcher app to do its thing, otherwise it would crash anyway
//Check that launcher is installed too
boolean hasIWADs = ((new File(progdir, "wads").listFiles().length) > 0);
boolean hasLauncher = //(new File(progdir, "no_launcher").exists()) || //Allow users to run without launcher if they _really_ want to
boolean hasLauncher = new File(progdir, "no_launcher").exists() || //Allow users to run without launcher if they _really_ want to
isPackageInstalled("com.Baggyg.QuestZDoom_Launcher", this.getPackageManager());
mNativeHandle = GLES3JNILib.onCreate( this, commandLineParams, hasIWADs, hasLauncher );
}