From f5cdabaca24e8538c874f2543a8f31bc454f4f91 Mon Sep 17 00:00:00 2001 From: Ryan Holtz Date: Thu, 6 Aug 2020 20:29:33 +0200 Subject: [PATCH] -netlist: Typo --- src/devices/machine/netlist.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/devices/machine/netlist.cpp b/src/devices/machine/netlist.cpp index 915a0fe0b03..886d67823e4 100644 --- a/src/devices/machine/netlist.cpp +++ b/src/devices/machine/netlist.cpp @@ -381,7 +381,7 @@ void netlist_mame_logic_input_device::write(const uint32_t val) const uint32_t v = (val >> m_shift) & 1; if (v != (*m_param)()) { - LGODEBUG("write %s\n", this->tag()); + LOGDEBUG("write %s\n", this->tag()); synchronize(0, v); } }