From 707993b68655550b4592ff91eb393ba6baec51f1 Mon Sep 17 00:00:00 2001 From: tomcw Date: Sat, 26 Feb 2022 18:39:39 +0000 Subject: [PATCH] Fix LogOutput() to call StrFormatV() --- source/Log.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/Log.cpp b/source/Log.cpp index 28ff3407..c1fd0759 100644 --- a/source/Log.cpp +++ b/source/Log.cpp @@ -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); }