Browse Source

Allow --ipa-console to override fullscreen check

pull/11/head
Quit 5 years ago
parent
commit
5bd3f0ebcd
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      IllusionInjector/Bootstrapper.cs

+ 1
- 1
IllusionInjector/Bootstrapper.cs View File

@@ -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();
}


Loading…
Cancel
Save