mirror of https://github.com/PCSX2/pcsx2.git
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
This commit is contained in:
parent
2544f4c320
commit
e4eec943de
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue