diff options
Diffstat (limited to 'TimeHACK.Main/Program.cs')
| -rw-r--r-- | TimeHACK.Main/Program.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/TimeHACK.Main/Program.cs b/TimeHACK.Main/Program.cs index a7d4d31..888c2f6 100644 --- a/TimeHACK.Main/Program.cs +++ b/TimeHACK.Main/Program.cs @@ -30,9 +30,9 @@ namespace TimeHACK /// Run TitleScreen.cs at launch. /// </summary> [STAThread] - static void Main() + static void Main(string[] args) { - System.Diagnostics.Debugger.Launch(); + if (args.Contains("-nd")) System.Diagnostics.Debugger.Launch(); if (nightly == true) { try |
