From 459dcd7b2c0c58acb9aa296062742ba213ce2ff2 Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Sat, 16 May 2026 16:10:47 -0500 Subject: [PATCH] Fix incorrect error print --- app/streaming/video/ffmpeg-renderers/vdpau.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/streaming/video/ffmpeg-renderers/vdpau.cpp b/app/streaming/video/ffmpeg-renderers/vdpau.cpp index 6ccd330c..dfb7e1ee 100644 --- a/app/streaming/video/ffmpeg-renderers/vdpau.cpp +++ b/app/streaming/video/ffmpeg-renderers/vdpau.cpp @@ -276,7 +276,7 @@ bool VDPAURenderer::initialize(PDECODER_PARAMETERS params) else { SDL_LogWarn(SDL_LOG_CATEGORY_APPLICATION, "Display size not within capabilities %dx%d vs %dx%d", - m_DisplayWidth, m_DisplayWidth, + m_DisplayWidth, m_DisplayHeight, maxWidth, maxHeight); } }