summaryrefslogtreecommitdiffstats
path: root/source/Log.cpp
diff options
context:
space:
mode:
authormadmaxoft <github@xoft.cz>2013-08-12 08:42:18 +0200
committermadmaxoft <github@xoft.cz>2013-08-12 14:47:08 +0200
commit27d0c9aef2d25b4d1f81f5b361f3f1f0ab9efc27 (patch)
tree2d6a42cd4eb69317e4f059b68392343c638673b3 /source/Log.cpp
parentRemoved cServer::BroadcastChat() and cServer::SendMessage(). (diff)
downloadcuberite-27d0c9aef2d25b4d1f81f5b361f3f1f0ab9efc27.tar
cuberite-27d0c9aef2d25b4d1f81f5b361f3f1f0ab9efc27.tar.gz
cuberite-27d0c9aef2d25b4d1f81f5b361f3f1f0ab9efc27.tar.bz2
cuberite-27d0c9aef2d25b4d1f81f5b361f3f1f0ab9efc27.tar.lz
cuberite-27d0c9aef2d25b4d1f81f5b361f3f1f0ab9efc27.tar.xz
cuberite-27d0c9aef2d25b4d1f81f5b361f3f1f0ab9efc27.tar.zst
cuberite-27d0c9aef2d25b4d1f81f5b361f3f1f0ab9efc27.zip
Diffstat (limited to '')
-rw-r--r--source/Log.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/Log.cpp b/source/Log.cpp
index 2b505de5d..c8937c380 100644
--- a/source/Log.cpp
+++ b/source/Log.cpp
@@ -138,7 +138,7 @@ void cLog::Log(const char * a_Format, va_list argList)
#if defined (_WIN32) && defined(_DEBUG)
// In a Windows Debug build, output the log to debug console as well:
- OutputDebugStringA(Line.c_str());
+ OutputDebugStringA((Line + "\n").c_str());
#endif // _WIN32
}