summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine
diff options
context:
space:
mode:
author Ryan Holtz <ryan.holtz@arrowheadgs.com>2020-08-06 20:04:00 +0200
committer Ryan Holtz <ryan.holtz@arrowheadgs.com>2020-08-06 20:16:22 +0200
commitaa86126fc2be9eabdfc46746967bca8e2f700162 (patch)
tree9bd9e090364380dbcab963270f78caca8b44d797 /src/devices/machine
parent0f6d29e759b5824c26b395ecd5f8ef195db4e44a (diff)
-fireone: Netlist sound now works other than the Alert trigger. [Ryan Holtz, Colin Howell, couriersud]
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 c4c76dcb45f..915a0fe0b03 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)())
{
- printf("write %s: %d\n", this->tag(), val);
+ LGODEBUG("write %s\n", this->tag());
synchronize(0, v);
}
}