aboutsummaryrefslogtreecommitdiff
path: root/frontend/main.c
diff options
context:
space:
mode:
authornotaz2013-04-02 02:06:00 +0300
committernotaz2013-04-02 02:06:00 +0300
commit82fe9e470953e4ab34bff66ea65696a2a412291a (patch)
treeb13d03f5a438cd73b5c403f4b5ede67d4d420777 /frontend/main.c
parent0069615fdda3a28da547a191bef990256620ff69 (diff)
downloadpcsx_rearmed-82fe9e470953e4ab34bff66ea65696a2a412291a.tar.gz
pcsx_rearmed-82fe9e470953e4ab34bff66ea65696a2a412291a.tar.bz2
pcsx_rearmed-82fe9e470953e4ab34bff66ea65696a2a412291a.zip
frontend: flush emuLog
nothing should be writing to that too often
Diffstat (limited to 'frontend/main.c')
-rw-r--r--frontend/main.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/frontend/main.c b/frontend/main.c
index 2cf5ee0..2ef5f52 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