mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-07-14 16:14:38 +00:00
Fix SkipMainCs flag, it was inverted
This commit is contained in:
parent
268603f36c
commit
753cbe32d9
1 changed files with 1 additions and 1 deletions
|
|
@ -468,7 +468,7 @@ bool StandardMainLoop::handleCommandLine( S32 argc, const char **argv )
|
||||||
#endif
|
#endif
|
||||||
mainCsStream = &str;
|
mainCsStream = &str;
|
||||||
}
|
}
|
||||||
else if (String::compare(argv[1], "SkipMainCs"))
|
else if (String::compare(argv[1], "SkipMainCs") == 0)
|
||||||
{
|
{
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue