Possible fix for single instance check by AI Windows launcher

This commit is contained in:
catbref 2019-06-04 13:58:06 +01:00
parent 2f3123a315
commit 5429cb12dd

View File

@ -238,6 +238,12 @@ public class Controller extends Thread {
Gui.getInstance().notifyRunning();
}
/** Called by AdvancedInstaller's launch EXE in single-instance mode, when an instance is already running. */
public static void secondaryMain(String args[]) {
// Return as we don't want to run more than one instance
}
// Main thread
@Override