mirror of https://github.com/PCSX2/pcsx2.git
Counters: Only schedule an EE interruption if they interrupt
This commit is contained in:
parent
8f0901e7a5
commit
c1c6bde429
|
@ -95,6 +95,7 @@ static __fi void _rcntSet( int cntidx )
|
|||
// Stopped or special hsync gate?
|
||||
if (!counter.mode.IsCounting || (counter.mode.ClockSource == 0x3) ) return;
|
||||
|
||||
if (!counter.mode.TargetInterrupt && !counter.mode.OverflowInterrupt) return;
|
||||
// check for special cases where the overflow or target has just passed
|
||||
// (we probably missed it because we're doing/checking other things)
|
||||
if( counter.count > 0x10000 || counter.count > counter.target )
|
||||
|
@ -113,6 +114,7 @@ static __fi void _rcntSet( int cntidx )
|
|||
if (c < nextCounter)
|
||||
{
|
||||
nextCounter = c;
|
||||
|
||||
cpuSetNextEvent( nextsCounter, nextCounter ); // Need to update on counter resets/target changes
|
||||
}
|
||||
|
||||
|
|
|
@ -100,6 +100,8 @@ static void _rcntSet(int cntidx)
|
|||
if (counter.mode & IOPCNT_STOPPED || counter.rate == PSXHBLANK)
|
||||
return;
|
||||
|
||||
if (!(counter.mode & (IOPCNT_INT_TARGET | IOPCNT_INT_OVERFLOW)))
|
||||
return;
|
||||
// check for special cases where the overflow or target has just passed
|
||||
// (we probably missed it because we're doing/checking other things)
|
||||
if (counter.count > overflowCap || counter.count > counter.target)
|
||||
|
|
Loading…
Reference in New Issue