VideoCommon/FrameDump: Fix log messages with arguments.

This commit is contained in:
Admiral H. Curtiss 2022-04-09 01:42:02 +02:00
parent 36134abd0e
commit df214af8a1
No known key found for this signature in database
GPG Key ID: F051B4C4044F33FB

View File

@ -94,7 +94,7 @@ void InitAVCodec()
// keep libav debug messages visible in release build of dolphin // keep libav debug messages visible in release build of dolphin
log_level = Common::Log::LogLevel::LINFO; 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. // TODO: We never call avformat_network_deinit.