summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author hap <happppp@users.noreply.github.com>2022-12-24 14:53:04 +0100
committer hap <happppp@users.noreply.github.com>2022-12-24 14:53:20 +0100
commit8fe688782983df45485084f6babdc16a3b7b62b5 (patch)
tree74ed4501dcf2251078ed8dd04b9c25d208b11be3
parent26aba20205ed6601c56eda48479e7b36d9343e6a (diff)
adc0808: one logerror was missing \n
-rw-r--r--src/devices/machine/adc0808.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/machine/adc0808.cpp b/src/devices/machine/adc0808.cpp
index a55c11077c7..edee765fcd9 100644
--- a/src/devices/machine/adc0808.cpp
+++ b/src/devices/machine/adc0808.cpp
@@ -140,7 +140,7 @@ TIMER_CALLBACK_MEMBER(adc0808_device::update_state)
logerror("Conversion finished, result %02x\n", m_sar);
if (m_sar != start_sar)
- logerror("Conversion finished, should fail - starting value %02x, ending value %02x", start_sar, m_sar);
+ logerror("Conversion finished, should fail - starting value %02x, ending value %02x\n", start_sar, m_sar);
// eoc is delayed by one cycle
m_cycle_timer->adjust(attotime::never);