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.
This commit is contained in:
JordanTheToaster 2023-03-11 08:49:30 +00:00 committed by refractionpcsx2
parent 12f4d6f872
commit e0e525d9ae
1 changed files with 5 additions and 1 deletions

View File

@ -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<int>(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