From 82fe9e470953e4ab34bff66ea65696a2a412291a Mon Sep 17 00:00:00 2001 From: notaz Date: Tue, 2 Apr 2013 02:06:00 +0300 Subject: [PATCH 1/1] frontend: flush emuLog nothing should be writing to that too often --- frontend/main.c | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/main.c b/frontend/main.c index 2cf5ee0b..2ef5f521 100644 --- a/frontend/main.c +++ b/frontend/main.c @@ -795,6 +795,7 @@ void SysPrintf(const char *fmt, ...) { va_start(list, fmt); vfprintf(emuLog, fmt, list); va_end(list); + fflush(emuLog); } #else -- 2.39.2