mirror of https://github.com/PCSX2/pcsx2.git
VIF: Only delay MSCAL - Fixes #1218 Downhill Domination and Twisted Metal Head-On. Snowblind games still fine
This commit is contained in:
parent
c43b1ac201
commit
6649f43069
|
@ -374,6 +374,7 @@ vifOp(vifCode_MSCAL) {
|
|||
//Warship Gunner 2 has a rather big dislike for the delays
|
||||
if(((data[1] >> 24) & 0x60) == 0x60) // Immediate following Unpack
|
||||
{
|
||||
//Snowblind games only use MSCAL, so other MS kicks force the program directly.
|
||||
vifExecQueue(idx);
|
||||
}
|
||||
}
|
||||
|
@ -399,6 +400,7 @@ vifOp(vifCode_MSCALF) {
|
|||
vuExecMicro(idx, (u16)(vifXRegs.code) << 3);
|
||||
vifX.cmd = 0;
|
||||
vifX.pass = 0;
|
||||
vifExecQueue(idx);
|
||||
}
|
||||
}
|
||||
pass3 { VifCodeLog("MSCALF"); }
|
||||
|
@ -414,6 +416,7 @@ vifOp(vifCode_MSCNT) {
|
|||
vuExecMicro(idx, -1);
|
||||
vifX.cmd = 0;
|
||||
vifX.pass = 0;
|
||||
vifExecQueue(idx);
|
||||
}
|
||||
}
|
||||
pass3 { VifCodeLog("MSCNT"); }
|
||||
|
|
Loading…
Reference in New Issue