From 20663336b3779dc7d79cb2619185eed08dd9c76b Mon Sep 17 00:00:00 2001 From: Anairkoen Schno Date: Fri, 16 Aug 2019 19:03:59 -0500 Subject: [PATCH] Reordered game argument order to make a bit more sense --- IPA.Loader/Config/SelfConfig.cs | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/IPA.Loader/Config/SelfConfig.cs b/IPA.Loader/Config/SelfConfig.cs index b47be047..6e72030c 100644 --- a/IPA.Loader/Config/SelfConfig.cs +++ b/IPA.Loader/Config/SelfConfig.cs @@ -44,16 +44,17 @@ namespace IPA.Config { switch (arg) { + case "--debug": + case "--mono-debug": + CommandLineValues.Debug.ShowDebug = true; + CommandLineValues.Debug.ShowCallSource = true; + break; case "--no-yeet": CommandLineValues.YeetMods = false; break; case "--condense-logs": CommandLineValues.Debug.CondenseModLogs = true; break; - case "--debug": - CommandLineValues.Debug.ShowDebug = true; - CommandLineValues.Debug.ShowCallSource = true; - break; case "--no-updates": CommandLineValues.Updates.AutoCheckUpdates = false; CommandLineValues.Updates.AutoUpdate = false;