From 83222508f65813383bce86417edc650f045df1f4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oliver=20St=C3=B6neberg?= Date: Fri, 22 Feb 2013 21:50:56 +0000 Subject: [PATCH] fixed uninitialized member in src/emu/video/hd61830.c (nw) --- src/emu/video/hd61830.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/emu/video/hd61830.c b/src/emu/video/hd61830.c index cc00f18fd83..00feac10bc5 100644 --- a/src/emu/video/hd61830.c +++ b/src/emu/video/hd61830.c @@ -109,6 +109,7 @@ hd61830_device::hd61830_device(const machine_config &mconfig, const char *tag, d : device_t(mconfig, HD61830, "Hitachi HD61830", tag, owner, clock), device_memory_interface(mconfig, *this), m_bf(false), + m_cac(0), m_blink(0), m_space_config("videoram", ENDIANNESS_LITTLE, 8, 16, 0, NULL, *ADDRESS_MAP_NAME(hd61830)), m_region_hd61830(*this, "hd61830")