summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/lpc-rtc.cpp
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2015-11-19 19:44:23 +0100
committer Miodrag Milanovic <mmicko@gmail.com>2015-11-19 19:45:32 +0100
commitb7f4c4bd2084970f3ec41057a6bafbba96a2386a (patch)
tree0228ce3f01376ddc19fa529409f5281e8040e433 /src/devices/machine/lpc-rtc.cpp
parentae2f72348d5d2c5d55f1e85cc133912638d0effb (diff)
Fixed uninitialized class members
Diffstat (limited to 'src/devices/machine/lpc-rtc.cpp')
-rw-r--r--src/devices/machine/lpc-rtc.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/machine/lpc-rtc.cpp b/src/devices/machine/lpc-rtc.cpp
index d92d7b515d0..455ab99d2fb 100644
--- a/src/devices/machine/lpc-rtc.cpp
+++ b/src/devices/machine/lpc-rtc.cpp
@@ -15,7 +15,7 @@ DEVICE_ADDRESS_MAP_START(extmap, 32, lpc_rtc_device)
ADDRESS_MAP_END
lpc_rtc_device::lpc_rtc_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
- : lpc_device(mconfig, LPC_RTC, "LPC RTC", tag, owner, clock, "lpc_rtc", __FILE__)
+ : lpc_device(mconfig, LPC_RTC, "LPC RTC", tag, owner, clock, "lpc_rtc", __FILE__), cur_index(0), cur_extindex(0)
{
}