Explorar el Código

Fix SkipMainCs flag, it was inverted

Lukas Aldershaab hace 1 año
padre
commit
753cbe32d9
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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;
       }