mirror of https://github.com/PCSX2/pcsx2.git
Config/FullscreenUI: Properly disable GPU Palette Conversion.
This commit is contained in:
parent
14b2335c54
commit
b5472c1b51
|
@ -3721,7 +3721,7 @@ void FullscreenUI::DrawGraphicsSettingsPage()
|
|||
"UserHacks_EstimateTextureRegion", false, manual_hw_fixes);
|
||||
DrawToggleSetting(bsi, FSUI_CSTR("GPU Palette Conversion"),
|
||||
FSUI_CSTR("When enabled GPU converts colormap-textures, otherwise the CPU will. It is a trade-off between GPU and CPU."),
|
||||
"EmuCore/GS", "paltex", false);
|
||||
"EmuCore/GS", "paltex", false, manual_hw_fixes);
|
||||
|
||||
MenuHeading(FSUI_CSTR("Upscaling Fixes"));
|
||||
DrawIntListSetting(bsi, FSUI_CSTR("Half Pixel Offset"), FSUI_CSTR("Adjusts vertices relative to upscaling."), "EmuCore/GS",
|
||||
|
|
|
@ -985,6 +985,7 @@ void Pcsx2Config::GSOptions::MaskUserHacks()
|
|||
UserHacks_HalfPixelOffset = GSHalfPixelOffset::Off;
|
||||
UserHacks_RoundSprite = 0;
|
||||
UserHacks_AutoFlush = GSHWAutoFlushLevel::Disabled;
|
||||
GPUPaletteConversion = false;
|
||||
PreloadFrameWithGSData = false;
|
||||
UserHacks_DisablePartialInvalidation = false;
|
||||
UserHacks_DisableDepthSupport = false;
|
||||
|
|
Loading…
Reference in New Issue