diff options
| author | Mai M <mathew1800@gmail.com> | 2022-04-08 20:47:57 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-04-08 20:47:57 -0400 |
| commit | dcf27b91bafd3ae2f69413ab3faa04b8e295fe3e (patch) | |
| tree | f0fe2d80fb01f76b2b5b26e2ba36af0b78cd866f /Source/Core/VideoCommon/FrameDump.cpp | |
| parent | 120208ae03d7dd464e05c90dfa14959a591af5ce (diff) | |
| parent | df214af8a1a3b19f1c06041853daa59dcc927780 (diff) | |
Merge pull request #10572 from AdmiralCurtiss/ffmpeg-log-va-list
VideoCommon/FrameDump: Fix log messages with arguments.
Diffstat (limited to 'Source/Core/VideoCommon/FrameDump.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/FrameDump.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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. |
