From ccaa9b60d8abe82b088f6340c76ed37eed6e4d00 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oliver=20St=C3=B6neberg?= Date: Wed, 23 Apr 2014 17:57:55 +0000 Subject: [PATCH] fixed usage of uninitialized member in abc1600_mac_device (nw) --- src/mess/machine/abc1600mac.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/mess/machine/abc1600mac.c b/src/mess/machine/abc1600mac.c index de3f16fc377..74e0f58213f 100644 --- a/src/mess/machine/abc1600mac.c +++ b/src/mess/machine/abc1600mac.c @@ -114,7 +114,8 @@ abc1600_mac_device::abc1600_mac_device(const machine_config &mconfig, const char m_space_config("program", ENDIANNESS_LITTLE, 8, 22, 0, *ADDRESS_MAP_NAME(program_map)), m_rom(*this, "boot"), m_segment_ram(*this, "segment_ram"), - m_page_ram(*this, "page_ram") + m_page_ram(*this, "page_ram"), + m_task(0) { }