mirror of https://github.com/PCSX2/pcsx2.git
Revert IOP Counter change. IOP counters already edge triggered based on INT flag
This commit is contained in:
parent
30e6a7a62a
commit
8a6d56bb29
|
@ -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();
|
||||
|
|
Loading…
Reference in New Issue