Explorar el Código

Don't dump string table in emscripten build

James Urquhart hace 12 años
padre
commit
dac8a599fa
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      engine/source/console/compiler.cc

+ 1 - 1
engine/source/console/compiler.cc

@@ -172,7 +172,7 @@ U32 CompilerStringTable::add(const char *str, bool caseSens, bool tag)
    
 #ifdef EMSCRIPTEN
    consoleAlloc(2);
-   Con::printf("CompilerStringTable::add(%s) %s %s @ %u:%u", str, caseSens ? "CASE" : "NOCASE", tag ? "TAG" : "NOTAG", newStr->string, len);
+   //Con::printf("CompilerStringTable::add(%s) %s %s @ %u:%u", str, caseSens ? "CASE" : "NOCASE", tag ? "TAG" : "NOTAG", newStr->string, len);
 #endif
 
    return newStr->start;