diff --git a/PS4Macro/Program.cs b/PS4Macro/Program.cs index c67637a..92b428e 100644 --- a/PS4Macro/Program.cs +++ b/PS4Macro/Program.cs @@ -54,7 +54,7 @@ static void Main() .Add("ShowConsole:", "Open debugging console on launch", v => m_Settings.ShowConsole = v == null ? true : Convert.ToBoolean(v)) .Add("StartupFile=", "Absolute or relative path to the file to load on launch (can be xml or dll)", v => m_Settings.StartupFile = v); - p.Add("Settings=", "Absolute or relative path to the settings file (will take priority)", v => m_Settings = Settings.Load(v)); + p.Add("SettingsFile=", "Absolute or relative path to the settings file (will take priority)", v => m_Settings = Settings.Load(v)); p.Add("h|?|help", "Displays this help message", v => { p.WriteOptionDescriptions(Console.Out); Environment.Exit(0);