summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/dmv/ram.cpp
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2015-11-14 18:39:52 +0100
committer Miodrag Milanovic <mmicko@gmail.com>2015-11-14 19:05:20 +0100
commit47f03ddabce64099a202864d78cef772c117893b (patch)
tree93bb79a8e97d1374e8eaa5ea5a44abfee22ab888 /src/devices/bus/dmv/ram.cpp
parent61d05aacb8e680d998ffccd9306b859555db5d26 (diff)
fix uninitialized class members for bus devices (nw)
Diffstat (limited to 'src/devices/bus/dmv/ram.cpp')
-rw-r--r--src/devices/bus/dmv/ram.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/bus/dmv/ram.cpp b/src/devices/bus/dmv/ram.cpp
index 32039302b14..b53bc26a63c 100644
--- a/src/devices/bus/dmv/ram.cpp
+++ b/src/devices/bus/dmv/ram.cpp
@@ -34,7 +34,7 @@ const device_type DMV_K208 = &device_creator<dmv_k208_device>;
dmv_ram_device::dmv_ram_device(const machine_config &mconfig, device_type type, UINT32 size, const char *name, const char *tag, device_t *owner, UINT32 clock, const char *shortname, const char *source)
: device_t(mconfig, type, name, tag, owner, clock, shortname, source),
- device_dmvslot_interface( mconfig, *this ),
+ device_dmvslot_interface( mconfig, *this ), m_ram(nullptr),
m_size(size)
{
}