formatting

This commit is contained in:
Patrick Mackinlay 2017-06-20 19:25:33 +07:00
parent 98c5240869
commit 66d825fc52

View File

@ -82,8 +82,8 @@ WRITE16_MEMBER(interpro_mcga_device::control_w)
// HACK: set or clear error status depending on ENMMBE bit // HACK: set or clear error status depending on ENMMBE bit
if (data & CONTROL_ENMMBE) if (data & CONTROL_ENMMBE)
m_error |= ERROR_VALID; m_error |= ERROR_VALID;
// else //else
// error &= ~ERROR_VALID; // m_error &= ~ERROR_VALID;
} }
WRITE16_MEMBER(interpro_fmcc_device::control_w) WRITE16_MEMBER(interpro_fmcc_device::control_w)
@ -93,6 +93,6 @@ WRITE16_MEMBER(interpro_fmcc_device::control_w)
// HACK: set or clear error status depending on ENMMBE bit // HACK: set or clear error status depending on ENMMBE bit
if (data & CONTROL_ENMMBE) if (data & CONTROL_ENMMBE)
m_error |= ERROR_VALID; m_error |= ERROR_VALID;
// else //else
// error &= ~ERROR_VALID; // m_error &= ~ERROR_VALID;
} }