From 299acd67b869e2b7508b6205a659a854fd2ca00d Mon Sep 17 00:00:00 2001 From: squidbus <175574877+squidbus@users.noreply.github.com> Date: Fri, 19 Sep 2025 20:24:00 -0700 Subject: [PATCH] Add output resolution to video debug window. --- MarathonRecomp/gpu/video.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/MarathonRecomp/gpu/video.cpp b/MarathonRecomp/gpu/video.cpp index 8829d9e6a..43870df4f 100644 --- a/MarathonRecomp/gpu/video.cpp +++ b/MarathonRecomp/gpu/video.cpp @@ -2696,6 +2696,9 @@ static void DrawProfiler() if (sdlVideoDriver != nullptr) ImGui::Text("SDL Video Driver: %s", sdlVideoDriver); + ImGui::NewLine(); + ImGui::Text("Output Resolution: %d x %d", Video::s_viewportWidth, Video::s_viewportHeight); + ImGui::NewLine(); ImGui::Checkbox("Show FPS", &Config::ShowFPS.Value); ImGui::NewLine();