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:
arcum42 2010-08-13 19:35:32 +00:00
parent 2544f4c320
commit e4eec943de
1 changed files with 1 additions and 1 deletions

View File

@ -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
}