Browse Source

don't disable log output with emscripten (also doesn't build otherwise)

Vladimir Vukicevic 6 years ago
parent
commit
f96b7ac3cb
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/debug.cpp

+ 1 - 1
src/debug.cpp

@@ -74,7 +74,7 @@ namespace bx
 #	else
 		NSLog(__CFStringMakeConstantString("%s"), _out);
 #	endif // defined(__OBJC__)
-#elif 0 // BX_PLATFORM_EMSCRIPTEN
+#elif BX_PLATFORM_EMSCRIPTEN
 		emscripten_log(EM_LOG_CONSOLE, "%s", _out);
 #else
 		fputs(_out, stdout);