diff options
Diffstat (limited to 'src/devices/cpu/mips/r4000.cpp')
-rw-r--r-- | src/devices/cpu/mips/r4000.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/cpu/mips/r4000.cpp b/src/devices/cpu/mips/r4000.cpp index f606bd49c10..47e2cd784a7 100644 --- a/src/devices/cpu/mips/r4000.cpp +++ b/src/devices/cpu/mips/r4000.cpp @@ -1110,7 +1110,7 @@ void r4000_base_device::cpu_exception(u32 exception, u16 const vector) if (exception == EXCEPTION_INT) { - if (machine().debug_flags & DEBUG_FLAG_ENABLED) + if (debugger_enabled()) { // notify the debugger of the first pending hardware interrupt u32 const iphw = CAUSE & SR & CAUSE_IPHW; |