Skip to content

Commit

Permalink
rename Settings argument to SettingsFile
Browse files Browse the repository at this point in the history
  • Loading branch information
komefai committed Jan 15, 2018
1 parent 635d432 commit ba0cabb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion PS4Macro/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit ba0cabb

Please sign in to comment.