mirror of https://github.com/PCSX2/pcsx2.git
Vif: Fix MSCNT for MK: Shaolin Monks.
-Tested Baldurs Gate, Twisted Metal, Warship Gunner 2 and Downhill Domination, all seem to be fine still.
This commit is contained in:
parent
59be0818e2
commit
744d07b8a1
|
@ -393,9 +393,15 @@ vifOp(vifCode_MSCNT) {
|
||||||
vuExecMicro(idx, -1);
|
vuExecMicro(idx, -1);
|
||||||
vifX.cmd = 0;
|
vifX.cmd = 0;
|
||||||
vifX.pass = 0;
|
vifX.pass = 0;
|
||||||
|
if (GetVifX.vifpacketsize > 1)
|
||||||
|
{
|
||||||
|
if (((data[1] >> 24) & 0x60) == 0x60) // Immediate following Unpack
|
||||||
|
{
|
||||||
vifExecQueue(idx);
|
vifExecQueue(idx);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
pass3 { VifCodeLog("MSCNT"); }
|
pass3 { VifCodeLog("MSCNT"); }
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue