summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine
diff options
context:
space:
mode:
author Ryan Holtz <ryan.holtz@arrowheadgs.com>2020-08-06 20:29:33 +0200
committer Ryan Holtz <ryan.holtz@arrowheadgs.com>2020-08-06 20:29:33 +0200
commitf5cdabaca24e8538c874f2543a8f31bc454f4f91 (patch)
tree109549147526f5d7b2692b48da0b87e9e2c1fcb6 /src/devices/machine
parentaa86126fc2be9eabdfc46746967bca8e2f700162 (diff)
-netlist: Typo
Diffstat (limited to 'src/devices/machine')
-rw-r--r--src/devices/machine/netlist.cpp2
1 files changed, 1 insertions, 1 deletions
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);
}
}