mirror of https://github.com/PCSX2/pcsx2.git
VIF: MSCNT address is -1, so don't mask it.
This commit is contained in:
parent
843650e79e
commit
97b74fa6ea
|
@ -94,7 +94,10 @@ static __fi void vuExecMicro(int idx, u32 addr) {
|
|||
}
|
||||
|
||||
GetVifX.queued_program = true;
|
||||
GetVifX.queued_pc = addr & (idx ? 0x7ffu : 0x1ffu);;
|
||||
if ((s32)addr == -1)
|
||||
GetVifX.queued_pc = addr;
|
||||
else
|
||||
GetVifX.queued_pc = addr & (idx ? 0x7ffu : 0x1ffu);
|
||||
GetVifX.unpackcalls = 0;
|
||||
|
||||
if (!idx || (!THREAD_VU1 && !INSTANT_VU1))
|
||||
|
|
Loading…
Reference in New Issue