You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ZoneBuilder currently parses the first (0) command line entry, which is the binary location. This results in an error message in the ZoneBuilder console, which can (and has) lead to confusion when trying to resolve different issues.
The first argument should be skipped or the error otherwise be silenced.
From what I can tell it uses GetCommandLineA which returns the arguments as a string. Possibly CommandLineToArgW could be used to parse it and skip the first argument, as theres some special cases to handle when parsing the command line.
The text was updated successfully, but these errors were encountered:
ZoneBuilder currently parses the first (0) command line entry, which is the binary location. This results in an error message in the ZoneBuilder console, which can (and has) lead to confusion when trying to resolve different issues.
The first argument should be skipped or the error otherwise be silenced.
From what I can tell it uses GetCommandLineA which returns the arguments as a string. Possibly CommandLineToArgW could be used to parse it and skip the first argument, as theres some special cases to handle when parsing the command line.
The text was updated successfully, but these errors were encountered: