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,7 +393,13 @@ vifOp(vifCode_MSCNT) {
|
|||
vuExecMicro(idx, -1);
|
||||
vifX.cmd = 0;
|
||||
vifX.pass = 0;
|
||||
vifExecQueue(idx);
|
||||
if (GetVifX.vifpacketsize > 1)
|
||||
{
|
||||
if (((data[1] >> 24) & 0x60) == 0x60) // Immediate following Unpack
|
||||
{
|
||||
vifExecQueue(idx);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
pass3 { VifCodeLog("MSCNT"); }
|
||||
|
|
Loading…
Reference in New Issue