z80scc: Make receive error logging conditional

This commit is contained in:
AJR 2023-03-30 22:22:12 -04:00
parent 0e06f6104e
commit a738dc0739

View File

@ -2584,7 +2584,7 @@ void z80scc_channel::receive_data(uint8_t data)
// store received character but do not step the fifo
m_rx_data_fifo[m_rx_fifo_wp] = data;
logerror("Receive_data() Error %02x\n", m_rx_error_fifo[m_rx_fifo_wp] & (RR1_CRC_FRAMING_ERROR | RR1_RX_OVERRUN_ERROR | RR1_PARITY_ERROR));
LOGRCV("Receive_data() Error %02x\n", m_rx_error_fifo[m_rx_fifo_wp] & (RR1_CRC_FRAMING_ERROR | RR1_RX_OVERRUN_ERROR | RR1_PARITY_ERROR));
}
else
{