mirror of
https://github.com/DrBeef/QuestZDoom.git
synced 2025-04-24 10:08:52 +00:00
feat: disable launcher check to test on Pico
This commit is contained in:
parent
2e4a62dd11
commit
97266df8c5
1 changed files with 1 additions and 1 deletions
|
@ -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 );
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue