소스 검색

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;
       }