mirror of https://github.com/PCSX2/pcsx2.git
Fixed Prince of Persia Sands of Time by increasing the VU kickstart cycles a bit.
(Issue 1341) git-svn-id: http://pcsx2.googlecode.com/svn/trunk@5451 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
a208901b9d
commit
376e373137
|
@ -25,7 +25,7 @@
|
|||
void BaseVUmicroCPU::ExecuteBlock(bool startUp) {
|
||||
const u32& stat = VU0.VI[REG_VPU_STAT].UL;
|
||||
const int test = m_Idx ? 0x100 : 1;
|
||||
const int s = 1024*6; // Kick Start Cycles (Silver Surfer needs this amount)
|
||||
const int s = 1024*8; // Kick Start Cycles (Silver Surfer needs this amount)
|
||||
const int c = 1024*1; // Continue Cycles
|
||||
if (!(stat & test)) return;
|
||||
if (startUp) { // Start Executing a microprogram
|
||||
|
|
Loading…
Reference in New Issue