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:
ramapcsx2 2010-02-23 02:18:12 +00:00
parent 1e4895d3cb
commit 52327bf37f
2 changed files with 7 additions and 2 deletions

View File

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

View File

@ -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)
{