mirror of https://github.com/PCSX2/pcsx2.git
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:
parent
12f4d6f872
commit
e0e525d9ae
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue