From 5bd3f0ebcd319ddad54cf59570af81edb105ca7f Mon Sep 17 00:00:00 2001 From: Quit Date: Sat, 8 Dec 2018 13:34:41 +0100 Subject: [PATCH] Allow --ipa-console to override fullscreen check --- IllusionInjector/Bootstrapper.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/IllusionInjector/Bootstrapper.cs b/IllusionInjector/Bootstrapper.cs index 29f46c5..1561198 100644 --- a/IllusionInjector/Bootstrapper.cs +++ b/IllusionInjector/Bootstrapper.cs @@ -12,7 +12,7 @@ namespace IllusionInjector void Awake() { - if (Environment.CommandLine.Contains("--verbose") && !Screen.fullScreen) + if (Environment.CommandLine.Contains("--verbose") && (!Screen.fullScreen || Environment.CommandLine.Contains("--ipa-console"))) { Windows.GuiConsole.CreateConsole(); }