Revert IOP Counter change. IOP counters already edge triggered based on INT flag

This commit is contained in:
refractionpcsx2 2020-07-18 20:54:15 +01:00
parent 30e6a7a62a
commit 8a6d56bb29
1 changed files with 1 additions and 1 deletions

View File

@ -164,7 +164,7 @@ void psxRcntInit() {
static bool __fastcall _rcntFireInterrupt(int i, bool isOverflow) {
bool ret;
if ((psxCounters[i].mode & 0x400) && !(psxCounters[i].mode & (isOverflow ? 0x1000 : 0x800))) { //IRQ fired
if (psxCounters[i].mode & 0x400) { //IRQ fired
//DevCon.Warning("Counter %d %s IRQ Fired count %x", i, isOverflow ? "Overflow" : "Target", psxCounters[i].count);
psxHu32(0x1070) |= psxCounters[i].interrupt;
iopTestIntc();