diff --git a/src/core/system.cpp b/src/core/system.cpp index 09b1c0177..43b69f568 100644 --- a/src/core/system.cpp +++ b/src/core/system.cpp @@ -5474,8 +5474,7 @@ bool System::StartMediaCapture(std::string path) const GSVector2i video_size = backend->GetPresenter().CalculateScreenshotSize(mode); u32 video_width = static_cast(video_size.x); u32 video_height = static_cast(video_size.y); - if (mode != DisplayScreenshotMode::ScreenResolution) - MediaCapture::AdjustVideoSize(&video_width, &video_height); + MediaCapture::AdjustVideoSize(&video_width, &video_height); // fire back to the CPU thread to actually start the capture Host::RunOnCPUThread([path = std::move(path), capture_audio, video_width, video_height]() mutable {