mirror of https://github.com/PCSX2/pcsx2.git
macroVU: Run vu0 on certain cases of recCTC2() like sVU's COP2 code does... this fixes Rachet and Clank's title screen's sps...
git-svn-id: http://pcsx2.googlecode.com/svn/trunk@2316 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
316e7ffccc
commit
b866ff405e
|
@ -333,8 +333,11 @@ static void recCTC2() {
|
||||||
AND32ItoR(EAX, 0x0C0C);
|
AND32ItoR(EAX, 0x0C0C);
|
||||||
MOV32RtoM((uptr)µVU0.regs->VI[REG_FBRST].UL, EAX);
|
MOV32RtoM((uptr)µVU0.regs->VI[REG_FBRST].UL, EAX);
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
_eeMoveGPRtoM((uptr)µVU0.regs->VI[_Rd_].UL, _Rt_);
|
// Executing vu0 block here fixes the intro of Rachet and Clank
|
||||||
|
// sVU's COP2 has a comment that "Donald Duck" needs this too...
|
||||||
|
if (_Rd_) _eeMoveGPRtoM((uptr)µVU0.regs->VI[_Rd_].UL, _Rt_);
|
||||||
|
CALLFunc((uptr)CpuVU0.ExecuteBlock);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue