From 511c4a67d37f0474c20d9795842cc781dadf77d0 Mon Sep 17 00:00:00 2001 From: "R. Belmont" Date: Sat, 6 Sep 2014 00:47:32 +0000 Subject: [PATCH] (MESS) apple3: refresh selected drive after the softswitches are changed. [Paul Hagstrom] --- src/emu/machine/wozfdc.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/emu/machine/wozfdc.c b/src/emu/machine/wozfdc.c index 9116b016482..327df3c26bc 100644 --- a/src/emu/machine/wozfdc.c +++ b/src/emu/machine/wozfdc.c @@ -552,4 +552,9 @@ void appleiii_fdc::control_dx(int offset) default: // cod8-c0df are not FDC related break; } + + if (offset < 8) + { + a3_update_drive_sel(); + } }