Corrected play speed on Mr. Kicker. [David Haywood]

This commit is contained in:
Scott Stone 2011-01-10 01:38:36 +00:00
parent 8ac0ed99d1
commit 691885f7cc

View File

@ -1720,9 +1720,9 @@ static READ32_HANDLER( mrkicker_speedup_r )
UINT32 pc = cpu_get_pc(space->cpu); UINT32 pc = cpu_get_pc(space->cpu);
if(pc == 0x469de || pc == 0x46a36) if(pc == 0x469de || pc == 0x46a36)
{ {
if(irq_active(space)) // if(irq_active(space))
cpu_spinuntil_int(space->cpu); // cpu_spinuntil_int(space->cpu);
else // else
cpu_eat_cycles(space->cpu, 50); cpu_eat_cycles(space->cpu, 50);
} }