diff options
Diffstat (limited to 'src/emu/debug/debugcpu.cpp')
-rw-r--r-- | src/emu/debug/debugcpu.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/debug/debugcpu.cpp b/src/emu/debug/debugcpu.cpp index 702d7a84802..d0a942b4a21 100644 --- a/src/emu/debug/debugcpu.cpp +++ b/src/emu/debug/debugcpu.cpp @@ -1754,7 +1754,7 @@ void device_debug::start_hook(const attotime &endtime) } } // check for debug keypresses - if (ui_input_pressed(m_device.machine(), IPT_UI_DEBUG_BREAK)) + if (m_device.machine().ui_input().pressed(IPT_UI_DEBUG_BREAK)) global->visiblecpu->debug()->halt_on_next_instruction("User-initiated break\n"); } |