From 9172a1a6f88fd2605f2a4ad83bbec44a78c83e37 Mon Sep 17 00:00:00 2001 From: KamFretoZ <14798312+kamfretoz@users.noreply.github.com> Date: Mon, 22 Jul 2024 11:13:46 +0700 Subject: [PATCH] Qt: Add prompt to missing ffmpeg warning --- pcsx2/GS/GSCapture.cpp | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/pcsx2/GS/GSCapture.cpp b/pcsx2/GS/GSCapture.cpp index a1e2710163..b72f2a5410 100644 --- a/pcsx2/GS/GSCapture.cpp +++ b/pcsx2/GS/GSCapture.cpp @@ -295,11 +295,13 @@ bool GSCapture::LoadFFmpeg(bool report_errors) { Host::ReportErrorAsync(TRANSLATE_SV("GSCapture","Failed to load FFmpeg"), fmt::format(TRANSLATE_FS("GSCapture","You may be missing one or more files, or are using the incorrect version. This build of PCSX2 requires:\n" - " libavcodec: {}\n" - " libavformat: {}\n" - " libavutil: {}\n" - " libswscale: {}\n" - " libswresample: {}\n"), LIBAVCODEC_VERSION_MAJOR, LIBAVFORMAT_VERSION_MAJOR, LIBAVUTIL_VERSION_MAJOR, + " libavcodec: {}\n" + " libavformat: {}\n" + " libavutil: {}\n" + " libswscale: {}\n" + " libswresample: {}\n\n" + "Please see our official documentation for more information."), + LIBAVCODEC_VERSION_MAJOR, LIBAVFORMAT_VERSION_MAJOR, LIBAVUTIL_VERSION_MAJOR, LIBSWSCALE_VERSION_MAJOR, LIBSWRESAMPLE_VERSION_MAJOR)); }