From 7a82b941cb3764e1867215ce619fef470e12ddf4 Mon Sep 17 00:00:00 2001 From: JordanTheToaster Date: Tue, 18 Oct 2022 18:36:06 +0100 Subject: [PATCH] ImGuiOverlays: Add Texture in RT Adds Texture in RT to the imgui overlay. --- pcsx2/Frontend/ImGuiOverlays.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pcsx2/Frontend/ImGuiOverlays.cpp b/pcsx2/Frontend/ImGuiOverlays.cpp index 57bd545726..d4e71f4bcd 100644 --- a/pcsx2/Frontend/ImGuiOverlays.cpp +++ b/pcsx2/Frontend/ImGuiOverlays.cpp @@ -309,6 +309,8 @@ void ImGuiManager::DrawSettingsOverlay() APPEND("CSBW={} ", GSConfig.UserHacks_CPUSpriteRenderBW); if (GSConfig.SkipDrawStart != 0 || GSConfig.SkipDrawEnd != 0) APPEND("SD={}/{} ", GSConfig.SkipDrawStart, GSConfig.SkipDrawEnd); + if (GSConfig.UserHacks_TextureInsideRt) + APPEND("TexRT "); } #undef APPEND