diff options
author | 2015-11-19 19:44:23 +0100 | |
---|---|---|
committer | 2015-11-19 19:45:32 +0100 | |
commit | b7f4c4bd2084970f3ec41057a6bafbba96a2386a (patch) | |
tree | 0228ce3f01376ddc19fa529409f5281e8040e433 /src/devices/sound/k056800.cpp | |
parent | ae2f72348d5d2c5d55f1e85cc133912638d0effb (diff) |
Fixed uninitialized class members
Diffstat (limited to 'src/devices/sound/k056800.cpp')
-rw-r--r-- | src/devices/sound/k056800.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/sound/k056800.cpp b/src/devices/sound/k056800.cpp index 1534783f8de..beac3a67b73 100644 --- a/src/devices/sound/k056800.cpp +++ b/src/devices/sound/k056800.cpp @@ -21,7 +21,7 @@ const device_type K056800 = &device_creator<k056800_device>; //------------------------------------------------- k056800_device::k056800_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) - : device_t(mconfig, K056800, "K056800 MIRAC", tag, owner, clock, "k056800", __FILE__), + : device_t(mconfig, K056800, "K056800 MIRAC", tag, owner, clock, "k056800", __FILE__), m_int_pending(false), m_int_enabled(false), m_int_handler(*this) { } |