mirror of
https://github.com/AppleWin/AppleWin.git
synced 2024-11-05 21:07:21 +00:00
Fix LogOutput() to call StrFormatV()
This commit is contained in:
parent
253a59fde6
commit
707993b686
@ -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);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user