Fix LogOutput() to call StrFormatV()

This commit is contained in:
tomcw 2022-02-26 18:39:39 +00:00
parent 253a59fde6
commit 707993b686
1 changed files with 1 additions and 1 deletions

View File

@ -93,7 +93,7 @@ void LogOutput(const char* format, ...)
va_list args;
va_start(args, format);
OutputDebugString(StrFormat(format, args).c_str());
OutputDebugString(StrFormatV(format, args).c_str());
va_end(args);
}