pcsx2: Fix microVU debug logging.

This commit is contained in:
gibbed 2019-07-11 21:02:34 -05:00 committed by lightningterror
parent 8e3b34bce6
commit b739e9187d
1 changed files with 1 additions and 0 deletions

View File

@ -28,6 +28,7 @@ _mVUt void __mVULog(const char* fmt, ...) {
va_start(list, fmt);
// concatenate the log message after the prefix:
vsprintf(tmp, fmt, list);
va_end(list);
mVU.logFile->Write( tmp );