浏览代码

Don't dump string table in emscripten build

James Urquhart 11 年之前
父节点
当前提交
dac8a599fa
共有 1 个文件被更改,包括 1 次插入1 次删除
  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
 #ifdef EMSCRIPTEN
    consoleAlloc(2);
    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
 #endif
 
 
    return newStr->start;
    return newStr->start;