diff options
author | 2014-10-23 09:27:55 +0200 | |
---|---|---|
committer | 2014-10-23 09:27:55 +0200 | |
commit | a1f5e051caa54dad35aa99a96e6a29952dc752f3 (patch) | |
tree | 51230944a4ca5774ca01ab60a3637dfb8df254be | |
parent | c7250314d9f7318199df3cf72826c084a4f65503 (diff) |
fixed usage of uninitialized member in wozfdc_device (nw)
-rw-r--r-- | src/emu/machine/wozfdc.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/emu/machine/wozfdc.c b/src/emu/machine/wozfdc.c index a6f2a10167e..25e549462a4 100644 --- a/src/emu/machine/wozfdc.c +++ b/src/emu/machine/wozfdc.c @@ -111,6 +111,7 @@ void wozfdc_device::device_reset() cur_lss.write_position = 0; cur_lss.write_line_active = false; predicted_lss.tm = attotime::never; + external_io_select = false; } void wozfdc_device::a3_update_drive_sel() |