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/machine/74123.cpp | |
parent | ae2f72348d5d2c5d55f1e85cc133912638d0effb (diff) |
Fixed uninitialized class members
Diffstat (limited to 'src/devices/machine/74123.cpp')
-rw-r--r-- | src/devices/machine/74123.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/machine/74123.cpp b/src/devices/machine/74123.cpp index f88b71dfab8..d5eddbe91a3 100644 --- a/src/devices/machine/74123.cpp +++ b/src/devices/machine/74123.cpp @@ -29,7 +29,7 @@ const device_type TTL74123 = &device_creator<ttl74123_device>; //------------------------------------------------- ttl74123_device::ttl74123_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) - : device_t(mconfig, TTL74123, "74123 TTL", tag, owner, clock, "ttl74123", __FILE__), + : device_t(mconfig, TTL74123, "74123 TTL", tag, owner, clock, "ttl74123", __FILE__), m_timer(nullptr), m_connection_type(TTL74123_NOT_GROUNDED_NO_DIODE), m_res(1.0), m_cap(1.0), |