VU: Fix out of bounds check for Q clamp

This commit is contained in:
refractionpcsx2 2023-01-07 22:49:13 +00:00
parent b6906d1edc
commit 17732a0b8a
1 changed files with 1 additions and 1 deletions

View File

@ -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;