Fix -c argument being ignored if not in first position

This commit is contained in:
Jordy Ruiz 2018-11-01 12:09:36 +01:00
parent 1b1cf5d312
commit 19e113cde3

View file

@ -2431,18 +2431,25 @@ void CClient::HandleTeeworldsConnectLink(const char *pConLink)
int main(int argc, const char **argv) // ignore_convention
{
#if defined(CONF_FAMILY_WINDOWS)
bool UseDefaultConsoleSettings = true;
for(int i = 1; i < argc; i++) // ignore_convention
{
#ifdef CONF_RELEASE
if(!(str_comp("-c", argv[i]) == 0 || str_comp("--console", argv[i]) == 0)) // ignore_convention
if(str_comp("-c", argv[i]) == 0 || str_comp("--console", argv[i]) == 0) // ignore_convention
#else
if(str_comp("-s", argv[i]) == 0 || str_comp("--silent", argv[i]) == 0) // ignore_convention
#endif
{
FreeConsole();
UseDefaultConsoleSettings = false;
break;
}
}
#ifdef CONF_RELEASE
if(!UseDefaultConsoleSettings)
#else
if(UseDefaultConsoleSettings)
#endif
FreeConsole();
#endif
bool UseDefaultConfig = false;