mirror of https://github.com/PCSX2/pcsx2.git
x86/microVU: Don't assert clearing macro mode temps
This commit is contained in:
parent
17732a0b8a
commit
154171e01e
|
@ -881,7 +881,7 @@ public:
|
||||||
{
|
{
|
||||||
if (x86regs[regId].inuse && x86regs[regId].type == X86TYPE_VIREG)
|
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);
|
_freeX86regWithoutWriteback(regId);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue