From 54e1d6643fa702e539ab47eca7cbe874eea3d782 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Branimir=20Karad=C5=BEi=C4=87?= Date: Mon, 13 Feb 2017 22:34:09 -0800 Subject: [PATCH] Cleanup. --- src/debug.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/debug.cpp b/src/debug.cpp index 550eef6..5e52be8 100644 --- a/src/debug.cpp +++ b/src/debug.cpp @@ -60,9 +60,11 @@ namespace bx # endif // defined(__OBJC__) #elif 0 // BX_PLATFORM_EMSCRIPTEN emscripten_log(EM_LOG_CONSOLE, "%s", _out); -#else +#elif !BX_CRT_NONE fputs(_out, stdout); fflush(stdout); +#else + BX_UNUSED(_out); #endif // BX_PLATFORM_ }