From 78687cec730b6a8e6ef53eb12ebaf01de78abb39 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oliver=20St=C3=B6neberg?= Date: Fri, 25 Apr 2014 07:12:46 +0000 Subject: [PATCH] fixed usage of uninitialized member in c2040_fdc_t (nw) --- src/emu/bus/ieee488/c2040fdc.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/emu/bus/ieee488/c2040fdc.c b/src/emu/bus/ieee488/c2040fdc.c index dfda8328f4a..911a22e09fe 100644 --- a/src/emu/bus/ieee488/c2040fdc.c +++ b/src/emu/bus/ieee488/c2040fdc.c @@ -115,6 +115,7 @@ c2040_fdc_t::c2040_fdc_t(const machine_config &mconfig, const char *tag, device_ cur_live.next_state = -1; cur_live.write_position = 0; cur_live.write_start_time = attotime::never; + cur_live.drv_sel = m_drv_sel; } c8050_fdc_t::c8050_fdc_t(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) :