mirror of https://github.com/PCSX2/pcsx2.git
Adjust last commit a bit, and made sVU do the same thing.
git-svn-id: http://pcsx2.googlecode.com/svn/trunk@2625 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
1e4895d3cb
commit
52327bf37f
|
@ -365,7 +365,10 @@ void recMicroVU0::ExecuteBlock() {
|
|||
if ((VU0.VI[REG_VPU_STAT].UL & 1) == 0) return;
|
||||
|
||||
XMMRegisters::Freeze();
|
||||
((mVUrecCall)microVU0.startFunct)(VU0.VI[REG_TPC].UL, 0x3000);
|
||||
// sometimes games spin on vu0, so be careful with this value
|
||||
// woody hangs if too high
|
||||
// Edit: Need to test this again, if anyone ever has a "Woody" game :p
|
||||
((mVUrecCall)microVU0.startFunct)(VU0.VI[REG_TPC].UL, 512*12);
|
||||
XMMRegisters::Thaw();
|
||||
}
|
||||
|
||||
|
|
|
@ -2873,8 +2873,10 @@ void SuperVUTestVU0Condition(u32 incstack)
|
|||
{
|
||||
if (s_vu && !SUPERVU_CHECKCONDITION) return; // vu0 only
|
||||
|
||||
CMP32ItoM((uptr)&s_TotalVUCycles, 512); // sometimes games spin on vu0, so be careful with this value
|
||||
// sometimes games spin on vu0, so be careful with this value
|
||||
// woody hangs if too high
|
||||
// Edit: Need to test this again, if anyone ever has a "Woody" game :p
|
||||
CMP32ItoM((uptr)&s_TotalVUCycles, 512*12);
|
||||
|
||||
if (incstack)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue