From e703baf295a2a4f5a407c091efa65e19f6125112 Mon Sep 17 00:00:00 2001 From: Connor McLaughlin Date: Sun, 27 Aug 2023 20:34:36 +1000 Subject: [PATCH] GSCapture: Fix incorrect format string for FFmpeg version --- pcsx2/GS/GSCapture.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pcsx2/GS/GSCapture.cpp b/pcsx2/GS/GSCapture.cpp index 50a531ff7d..38bcb3c5c0 100644 --- a/pcsx2/GS/GSCapture.cpp +++ b/pcsx2/GS/GSCapture.cpp @@ -289,7 +289,7 @@ bool GSCapture::LoadFFmpeg(bool report_errors) " libavcodec: {}\n" " libavformat: {}\n" " libavutil: {}\n" - " libswscale: {}\n", + " libswscale: {}\n" " libswresample: {}\n", LIBAVCODEC_VERSION_MAJOR, LIBAVFORMAT_VERSION_MAJOR, LIBAVUTIL_VERSION_MAJOR, LIBSWSCALE_VERSION_MAJOR, LIBSWRESAMPLE_VERSION_MAJOR)); }