浏览代码

Fix SkipMainCs flag, it was inverted

Lukas Aldershaab 1 年之前
父节点
当前提交
753cbe32d9
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      Engine/source/app/mainLoop.cpp

+ 1 - 1
Engine/source/app/mainLoop.cpp

@@ -468,7 +468,7 @@ bool StandardMainLoop::handleCommandLine( S32 argc, const char **argv )
 #endif
          mainCsStream = &str;
       }
-      else if (String::compare(argv[1], "SkipMainCs"))
+      else if (String::compare(argv[1], "SkipMainCs") == 0)
       {
          return true;
       }