From a40a7469bf0410a4d878c812c5bf812a8d631f3f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oliver=20St=C3=B6neberg?= Date: Fri, 22 Feb 2013 21:13:11 +0000 Subject: [PATCH] (MESS) fixed uninitialized member in src/mess/machine/wd11c00_17.c (nw) --- src/mess/machine/wd11c00_17.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/mess/machine/wd11c00_17.c b/src/mess/machine/wd11c00_17.c index 1f8f9de1277..58e956b311a 100644 --- a/src/mess/machine/wd11c00_17.c +++ b/src/mess/machine/wd11c00_17.c @@ -211,6 +211,7 @@ inline void wd11c00_17_device::select() wd11c00_17_device::wd11c00_17_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) : device_t(mconfig, WD11C00_17, "Western Digital WD11C00-17", tag, owner, clock), m_status(0), + m_ra(0), m_irq5(CLEAR_LINE), m_drq3(CLEAR_LINE), m_busy(1),