From 32182fe126344e318bd64b41be7d04fdf4e400e8 Mon Sep 17 00:00:00 2001 From: ramapcsx2 Date: Sat, 13 Feb 2016 12:14:40 +0100 Subject: [PATCH] always fflush ee/iop logs. fixes the test suite timing out on windows. --- pcsx2/DebugTools/Debug.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pcsx2/DebugTools/Debug.h b/pcsx2/DebugTools/Debug.h index f47e46b0ee..2706669fba 100644 --- a/pcsx2/DebugTools/Debug.h +++ b/pcsx2/DebugTools/Debug.h @@ -228,12 +228,12 @@ public: { ConsoleColorScope cs(conColor); Console.WriteRaw( msg ); -#ifdef __linux__ + // 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 // print anything. fflush(NULL); -#endif + return false; }