From 8f534764f968b989488dec085dd607c51f125e6d Mon Sep 17 00:00:00 2001 From: Olivier Galibert Date: Wed, 14 Nov 2018 14:15:16 +0100 Subject: mu100: Add missing roms, also some wip [Guru, O. Galibert] --- src/emu/debug/debugcpu.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/emu/debug/debugcpu.cpp') diff --git a/src/emu/debug/debugcpu.cpp b/src/emu/debug/debugcpu.cpp index c3e4ece9470..73739a44411 100644 --- a/src/emu/debug/debugcpu.cpp +++ b/src/emu/debug/debugcpu.cpp @@ -2895,12 +2895,12 @@ void device_debug::watchpoint::setEnabled(bool value) void device_debug::watchpoint::install(read_or_write mode) { - if(m_installing) + if (m_installing) return; m_installing = true; - if ((u32(mode) & u32(read_or_write::READ) && m_phr) + if ((u32(mode) & u32(read_or_write::READ)) && m_phr) m_phr->remove(); - if ((u32(mode) & u32(read_or_write::WRITE) && m_phw) + if ((u32(mode) & u32(read_or_write::WRITE)) && m_phw) m_phw->remove(); std::string name = util::string_format("wp@%x", m_address); switch (m_space.data_width()) -- cgit v1.2.3