From e0e525d9ae99935e4b176602226a78a464b94205 Mon Sep 17 00:00:00 2001 From: JordanTheToaster Date: Sat, 11 Mar 2023 08:49:30 +0000 Subject: [PATCH] ImGuiOverlays: Add missing fix to status bar Adds Estimate Texture Region and GPU CLUT to the status bar as well as amends the names of CPU CLUT and GPU CLUT. --- pcsx2/Frontend/ImGuiOverlays.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pcsx2/Frontend/ImGuiOverlays.cpp b/pcsx2/Frontend/ImGuiOverlays.cpp index 9a3fca28a2..745472d1f9 100644 --- a/pcsx2/Frontend/ImGuiOverlays.cpp +++ b/pcsx2/Frontend/ImGuiOverlays.cpp @@ -406,7 +406,9 @@ void ImGuiManager::DrawSettingsOverlay() if (GSConfig.UserHacks_CPUSpriteRenderBW != 0) APPEND("CSBW={} ", GSConfig.UserHacks_CPUSpriteRenderBW); if (GSConfig.UserHacks_CPUCLUTRender != 0) - APPEND("CCD={} ", GSConfig.UserHacks_CPUCLUTRender); + APPEND("CCLUT={} ", GSConfig.UserHacks_CPUCLUTRender); + if (GSConfig.UserHacks_GPUTargetCLUTMode != GSGPUTargetCLUTMode::Disabled) + APPEND("GCLUT={} ", static_cast(GSConfig.UserHacks_GPUTargetCLUTMode)); if (GSConfig.SkipDrawStart != 0 || GSConfig.SkipDrawEnd != 0) APPEND("SD={}/{} ", GSConfig.SkipDrawStart, GSConfig.SkipDrawEnd); if (GSConfig.UserHacks_TextureInsideRt != GSTextureInRtMode::Disabled) @@ -435,6 +437,8 @@ void ImGuiManager::DrawSettingsOverlay() APPEND("WGSM "); if (GSConfig.PreloadFrameWithGSData) APPEND("PLFD "); + if (GSConfig.UserHacks_EstimateTextureRegion) + APPEND("ETR "); } #undef APPEND