From df214af8a1a3b19f1c06041853daa59dcc927780 Mon Sep 17 00:00:00 2001 From: "Admiral H. Curtiss" Date: Sat, 9 Apr 2022 01:42:02 +0200 Subject: [PATCH] VideoCommon/FrameDump: Fix log messages with arguments. --- Source/Core/VideoCommon/FrameDump.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/VideoCommon/FrameDump.cpp b/Source/Core/VideoCommon/FrameDump.cpp index 7054ba11af..9cbc741b51 100644 --- a/Source/Core/VideoCommon/FrameDump.cpp +++ b/Source/Core/VideoCommon/FrameDump.cpp @@ -94,7 +94,7 @@ void InitAVCodec() // keep libav debug messages visible in release build of dolphin log_level = Common::Log::LogLevel::LINFO; - GENERIC_LOG(Common::Log::LogType::FRAMEDUMP, log_level, fmt, vl); + GENERIC_LOG_V(Common::Log::LogType::FRAMEDUMP, log_level, fmt, vl); }); // TODO: We never call avformat_network_deinit.