summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/tosh1000.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/tosh1000.cpp')
-rw-r--r--src/mame/drivers/tosh1000.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/drivers/tosh1000.cpp b/src/mame/drivers/tosh1000.cpp
index 0589cef9f1f..d93bb180ba9 100644
--- a/src/mame/drivers/tosh1000.cpp
+++ b/src/mame/drivers/tosh1000.cpp
@@ -244,9 +244,9 @@ ADDRESS_MAP_END
void tosh1000_state::cfg_fdc_35(device_t *device)
{
- device_slot_interface::static_set_default_option(*device->subdevice("fdc:0"), "35dd");
- device_slot_interface::static_set_fixed(*device->subdevice("fdc:0"), true);
- device_slot_interface::static_set_default_option(*device->subdevice("fdc:1"), "");
+ dynamic_cast<device_slot_interface &>(*device->subdevice("fdc:0")).set_default_option("35dd");
+ dynamic_cast<device_slot_interface &>(*device->subdevice("fdc:0")).set_fixed(true);
+ dynamic_cast<device_slot_interface &>(*device->subdevice("fdc:1")).set_default_option("");
}
MACHINE_CONFIG_START(tosh1000_state::tosh1000)