mirror of
https://github.com/AppleWin/AppleWin.git
synced 2026-04-20 15:17:50 +00:00
Fix LogOutput() to call StrFormatV()
This commit is contained in:
+1
-1
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user