always fflush ee/iop logs. fixes the test suite timing out on windows.

This commit is contained in:
ramapcsx2 2016-02-13 12:14:40 +01:00
parent 255a62dd21
commit 32182fe126
1 changed files with 2 additions and 2 deletions

View File

@ -228,12 +228,12 @@ public:
{ {
ConsoleColorScope cs(conColor); ConsoleColorScope cs(conColor);
Console.WriteRaw( msg ); Console.WriteRaw( msg );
#ifdef __linux__
// Buffered output isn't compatible with the testsuite. The end of test // Buffered output isn't compatible with the testsuite. The end of test
// doesn't always get flushed. Let's just flush all the output if EE/IOP // doesn't always get flushed. Let's just flush all the output if EE/IOP
// print anything. // print anything.
fflush(NULL); fflush(NULL);
#endif
return false; return false;
} }