mirror of https://github.com/PCSX2/pcsx2.git
Fixed some 'too many newlines' bugs in the Console namespace.
git-svn-id: http://pcsx2.googlecode.com/svn/trunk@1096 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
5edb195282
commit
e24851927a
|
@ -43,7 +43,7 @@ namespace Console
|
|||
|
||||
va_list list;
|
||||
va_start(list,dummy);
|
||||
WriteLn( vfmt_string( fmt, list ).c_str() );
|
||||
Write( vfmt_string( fmt, list ).c_str() );
|
||||
va_end(list);
|
||||
|
||||
return false;
|
||||
|
|
|
@ -95,7 +95,7 @@ namespace Console
|
|||
|
||||
if (emuLog != NULL)
|
||||
{
|
||||
fputs("\n", emuLog);
|
||||
fputs("", emuLog);
|
||||
fflush( emuLog );
|
||||
}
|
||||
|
||||
|
@ -114,7 +114,7 @@ namespace Console
|
|||
|
||||
// No flushing here -- only flush after newlines.
|
||||
if (emuLog != NULL)
|
||||
fputs(fmt, emuLog);
|
||||
fprintf( emuLog, fmt );
|
||||
|
||||
return false;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue