diff options
author | 2014-04-29 06:56:40 +0000 | |
---|---|---|
committer | 2014-04-29 06:56:40 +0000 | |
commit | bf9cc508b5164c313c91a0a82ad3182a13423cf4 (patch) | |
tree | e0fd1456fd5f603e4e5eb4fe6b3151b6c6fdc525 /src | |
parent | e5fb6132d54f26b1c093724183514c59b839e1e0 (diff) |
fixed usage of uninitialized member in msm58321_device (nw)
Diffstat (limited to 'src')
-rw-r--r-- | src/emu/machine/msm58321.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/emu/machine/msm58321.c b/src/emu/machine/msm58321.c index fc1d58940a4..1a12b8bfd50 100644 --- a/src/emu/machine/msm58321.c +++ b/src/emu/machine/msm58321.c @@ -178,6 +178,7 @@ msm58321_device::msm58321_device(const machine_config &mconfig, const char *tag, : device_t(mconfig, MSM58321, "MSM58321", tag, owner, clock, "msm58321", __FILE__), device_rtc_interface(mconfig, *this), device_nvram_interface(mconfig, *this), + m_year0(0), m_default_24h(false), m_d0_handler(*this), m_d1_handler(*this), |