gobble up -psn command line options.

Should fix #387.
This commit is contained in:
C.W. Betts 2018-08-21 13:04:21 -06:00
parent b53be4943c
commit fdf5a37c35

View file

@ -400,6 +400,10 @@ static void ReadCmdArgs(Inilist &ini, Arglist &Args)
throw nesting_depth_exceeded();
ReadIniArgs(ini);
}
else if (!strncmp(p, "-psn", 4))
{
//do nothing/gobble it up
}
else
throw unhandled_argument(std::move(*pp));
}