From 5d11295b35bf42835075e409cf785a734fb267e0 Mon Sep 17 00:00:00 2001 From: Scott Stone Date: Fri, 12 Aug 2016 20:09:02 -0400 Subject: [PATCH] =?UTF-8?q?Compile=20fix=20from=20Ren=C3=A9=20=20(nw)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/devices/machine/mc6852.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/devices/machine/mc6852.cpp b/src/devices/machine/mc6852.cpp index 957aa66413e..e8ed3241b92 100644 --- a/src/devices/machine/mc6852.cpp +++ b/src/devices/machine/mc6852.cpp @@ -197,8 +197,8 @@ WRITE8_MEMBER( mc6852_device::write ) if (LOG) logerror("MC6852 '%s' Control 2 %02x\n", tag(), data); m_cr[1] = data; - int data_bit_count; - parity_t parity; + int data_bit_count = 0; + parity_t parity = PARITY_NONE; stop_bits_t stop_bits = STOP_BITS_1; switch (data & C2_WS_MASK)