Fix LogOutput() to call StrFormatV()
This commit is contained in:
parent
253a59fde6
commit
707993b686
1 changed files with 1 additions and 1 deletions
|
@ -93,7 +93,7 @@ void LogOutput(const char* format, ...)
|
||||||
va_list args;
|
va_list args;
|
||||||
va_start(args, format);
|
va_start(args, format);
|
||||||
|
|
||||||
OutputDebugString(StrFormat(format, args).c_str());
|
OutputDebugString(StrFormatV(format, args).c_str());
|
||||||
|
|
||||||
va_end(args);
|
va_end(args);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue