frontend: flush emuLog
authornotaz <notasas@gmail.com>
Mon, 1 Apr 2013 23:06:00 +0000 (02:06 +0300)
committernotaz <notasas@gmail.com>
Mon, 1 Apr 2013 23:06:00 +0000 (02:06 +0300)
nothing should be writing to that too often

frontend/main.c

index 2cf5ee0..2ef5f52 100644 (file)
@@ -795,6 +795,7 @@ void SysPrintf(const char *fmt, ...) {
        va_start(list, fmt);
        vfprintf(emuLog, fmt, list);
        va_end(list);
+       fflush(emuLog);
 }
 
 #else