diff options
author | notaz | 2013-04-02 02:06:00 +0300 |
---|---|---|
committer | notaz | 2013-04-02 02:06:00 +0300 |
commit | 82fe9e470953e4ab34bff66ea65696a2a412291a (patch) | |
tree | b13d03f5a438cd73b5c403f4b5ede67d4d420777 /frontend | |
parent | 0069615fdda3a28da547a191bef990256620ff69 (diff) | |
download | pcsx_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')
-rw-r--r-- | frontend/main.c | 1 |
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 |