mirror of https://github.com/PCSX2/pcsx2.git
GS: Make sure upscaling hacks are disabled on native res.
There was a regression that caused upscaling hacks to still be enabled on native res.
This commit is contained in:
parent
063d02a9cb
commit
765dab5d8d
|
@ -654,13 +654,16 @@ void Pcsx2Config::GSOptions::MaskUserHacks()
|
|||
|
||||
void Pcsx2Config::GSOptions::MaskUpscalingHacks()
|
||||
{
|
||||
if (UpscaleMultiplier == 1 || ManualUserHacks)
|
||||
if (UpscaleMultiplier != 1 && ManualUserHacks)
|
||||
return;
|
||||
|
||||
UserHacks_AlignSpriteX = false;
|
||||
UserHacks_MergePPSprite = false;
|
||||
UserHacks_WildHack = false;
|
||||
UserHacks_HalfPixelOffset = 0;
|
||||
UserHacks_RoundSprite = 0;
|
||||
UserHacks_TCOffsetX = 0;
|
||||
UserHacks_TCOffsetY = 0;
|
||||
}
|
||||
|
||||
bool Pcsx2Config::GSOptions::UseHardwareRenderer() const
|
||||
|
|
Loading…
Reference in New Issue