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:
refractionpcsx2 2016-10-02 15:35:06 +01:00
parent 59be0818e2
commit 744d07b8a1
1 changed files with 7 additions and 1 deletions

View File

@ -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"); }