diff options
author | 2018-04-01 19:10:26 +1000 | |
---|---|---|
committer | 2018-04-01 19:10:26 +1000 | |
commit | 2c340f490e67efd1ba37312e40b30289c025488b (patch) | |
tree | 791cd5adb237d2fb3276d17be80e54fadbd308c9 /src/devices/cpu/dsp16/dsp16.cpp | |
parent | 397f54e29a8946041e7f09411f629094b6dff3e5 (diff) |
move some not-directly-emulation-related helpers to lib/util, further extricate emu.h from tools (nw)
Diffstat (limited to 'src/devices/cpu/dsp16/dsp16.cpp')
-rw-r--r-- | src/devices/cpu/dsp16/dsp16.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/cpu/dsp16/dsp16.cpp b/src/devices/cpu/dsp16/dsp16.cpp index a360ec73607..b9948495566 100644 --- a/src/devices/cpu/dsp16/dsp16.cpp +++ b/src/devices/cpu/dsp16/dsp16.cpp @@ -382,7 +382,7 @@ void dsp16_device_base::device_reset() void dsp16_device_base::execute_run() { - if (machine().debug_flags & DEBUG_FLAG_ENABLED) + if (debugger_enabled()) { while (m_core->icount_remaining()) { |