mirror of https://github.com/PCSX2/pcsx2.git
ImGuiOverlays: Add hardware download mode to settings OSD
This commit is contained in:
parent
39ab409970
commit
6a1eb231dd
|
@ -280,6 +280,9 @@ void ImGuiManager::DrawSettingsOverlay()
|
|||
if (GSConfig.GPUPaletteConversion)
|
||||
APPEND("PT ");
|
||||
|
||||
if (GSConfig.HWDownloadMode != GSHardwareDownloadMode::Enabled)
|
||||
APPEND("DL={} ", static_cast<unsigned>(GSConfig.HWDownloadMode));
|
||||
|
||||
if (GSConfig.HWMipmap != HWMipmapLevel::Automatic)
|
||||
APPEND("MM={} ", static_cast<unsigned>(GSConfig.HWMipmap));
|
||||
|
||||
|
|
Loading…
Reference in New Issue