diff options
| -rw-r--r-- | ChangeLog | 6 | ||||
| -rw-r--r-- | libpcsxcore/r3000a.c | 4 |
2 files changed, 8 insertions, 2 deletions
@@ -1,3 +1,9 @@ +November 8, 2009 Wei Mingzhi <weimingzhi@gmail.com> + + * libpcsxcore/r3000a.c: Commented out the check for psxRegs.interrupt + before checking for hardware interrupts, which fixes the issue with I.Q. + Final (maybe other games too). + November 7, 2009 Wei Mingzhi <weimingzhi@gmail.com> * plugins/dfxvideo/draw.c: Don't bail out if the color depth is not set to 32. diff --git a/libpcsxcore/r3000a.c b/libpcsxcore/r3000a.c index 72d52f37..070e790f 100644 --- a/libpcsxcore/r3000a.c +++ b/libpcsxcore/r3000a.c @@ -154,10 +154,10 @@ void psxBranchTest() { } } - if (psxRegs.interrupt & 0x80000000) { + //if (psxRegs.interrupt & 0x80000000) { psxRegs.interrupt&=~0x80000000; psxTestHWInts(); - } + //} } // if (psxRegs.cycle > 0xd29c6500) Log=1; } |
