x86/microVU: Don't assert clearing macro mode temps

This commit is contained in:
Stenzek 2023-01-08 15:17:51 +10:00 committed by lightningterror
parent 17732a0b8a
commit 154171e01e
1 changed files with 1 additions and 1 deletions

View File

@ -881,7 +881,7 @@ public:
{
if (x86regs[regId].inuse && x86regs[regId].type == X86TYPE_VIREG)
{
pxAssert(x86regs[regId].reg == static_cast<u8>(clear.VIreg));
pxAssert(x86regs[regId].reg == clear.VIreg);
_freeX86regWithoutWriteback(regId);
}
}