mirror of https://github.com/PCSX2/pcsx2.git
VU: Only wait for VU sync after wait macro if VU0 still running
Makes Tekken Tag a good 2-4 FPS faster.
This commit is contained in:
parent
2406ae6e07
commit
f7bcb92d9a
|
@ -78,7 +78,9 @@ __fi void _vu0run(bool breakOnMbit, bool addCycles) {
|
|||
{
|
||||
cpuRegs.cycle += (VU0.cycle - startcycle);
|
||||
CpuVU1->ExecuteBlock(0); // Catch up VU1 as it's likely fallen behind
|
||||
cpuSetNextEventDelta(4);
|
||||
|
||||
if(VU0.VI[REG_VPU_STAT].UL & 1)
|
||||
cpuSetNextEventDelta(4);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue