From e4eec943deee9cf09f12c4c38fbcb289e3c98ecb Mon Sep 17 00:00:00 2001 From: arcum42 Date: Fri, 13 Aug 2010 19:35:32 +0000 Subject: [PATCH] Get rid of extraneous line breaks on the console output(Linux). git-svn-id: http://pcsx2.googlecode.com/svn/trunk@3638 96395faa-99c1-11dd-bbfe-3dabce05a288 --- common/src/Utilities/Console.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/src/Utilities/Console.cpp b/common/src/Utilities/Console.cpp index e42bf8ef29..393833d712 100644 --- a/common/src/Utilities/Console.cpp +++ b/common/src/Utilities/Console.cpp @@ -75,7 +75,7 @@ void MSW_OutputDebugString( const wxString& text ) if( hasDebugger ) OutputDebugString( text ); #else // send them to stderr - wxPrintf(L"%s\n", text.c_str()); + wxPrintf(L"%s", text.c_str()); fflush(stderr); #endif }