From 90ef9cfe97d64825f8e6b7b4e82556ef020a44b5 Mon Sep 17 00:00:00 2001 From: madmaxoft Date: Mon, 12 Aug 2013 08:42:18 +0200 Subject: Fixed logging into debug console. Was missing the LF at the end. --- source/Log.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/Log.cpp') 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 } -- cgit v1.2.3