From c8bd6301c9a32b62afd3fb25e645b2feb03c5341 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oliver=20St=C3=B6neberg?= Date: Wed, 20 Feb 2013 18:22:27 +0000 Subject: [PATCH] (MESS) fixed uninitialized member in src/mess/machine/c2040.c (nw) --- src/mess/machine/c2040.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/mess/machine/c2040.c b/src/mess/machine/c2040.c index c8dfe218b3a..406488a21fe 100644 --- a/src/mess/machine/c2040.c +++ b/src/mess/machine/c2040.c @@ -1477,6 +1477,7 @@ c2040_device::c2040_device(const machine_config &mconfig, device_type type, cons m_atna(1), m_ds(-1), m_bit_count(0), + m_sr(0), m_pi(0), m_ready(0), m_mode(0), @@ -1513,6 +1514,7 @@ c2040_device::c2040_device(const machine_config &mconfig, const char *tag, devic m_atna(1), m_ds(-1), m_bit_count(0), + m_sr(0), m_pi(0), m_ready(0), m_mode(0),