summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Ivan Vangelista <mesgnet@yahoo.it>2020-06-06 09:18:23 +0200
committer Ivan Vangelista <mesgnet@yahoo.it>2020-06-06 09:18:23 +0200
commita7a967c69f511196cb0485b4e2c9d342ca6ee823 (patch)
tree232dbe89e89bc79204618f077b0830ba6e69a9b8
parentbce3e6b3de81de6061938326d69eb5e3fc60d692 (diff)
devices/machine/8042kbdc.cpp: initilized variable that caused problems for the PCI PC drivers in devnoclear builds (nw)
-rw-r--r--src/devices/machine/8042kbdc.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/devices/machine/8042kbdc.cpp b/src/devices/machine/8042kbdc.cpp
index 2f1ca94f865..18338dd14d9 100644
--- a/src/devices/machine/8042kbdc.cpp
+++ b/src/devices/machine/8042kbdc.cpp
@@ -71,6 +71,7 @@ void kbdc8042_device::device_start()
m_sending = 0;
m_last_write_to_control = 0;
m_status_read_mode = 0;
+ m_speaker = 0;
m_update_timer = timer_alloc(TIMER_UPDATE);
m_update_timer->adjust(attotime::never);