mirror of https://github.com/PCSX2/pcsx2.git
VU: Fix out of bounds check for Q clamp
This commit is contained in:
parent
b6906d1edc
commit
17732a0b8a
|
@ -598,7 +598,7 @@ public:
|
|||
|
||||
bool checkVFClamp(int regId)
|
||||
{
|
||||
if ((xmmMap[regId].VFreg == 33 && !EmuConfig.Gamefixes.IbitHack) || xmmMap[regId].isZero)
|
||||
if (regId != xmmPQ.Id && ((xmmMap[regId].VFreg == 33 && !EmuConfig.Gamefixes.IbitHack) || xmmMap[regId].isZero))
|
||||
return false;
|
||||
else
|
||||
return true;
|
||||
|
|
Loading…
Reference in New Issue