diff options
Diffstat (limited to 'src/emu/machine/wozfdc.c')
-rw-r--r-- | src/emu/machine/wozfdc.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/emu/machine/wozfdc.c b/src/emu/machine/wozfdc.c index f43620ff427..7486d17816e 100644 --- a/src/emu/machine/wozfdc.c +++ b/src/emu/machine/wozfdc.c @@ -63,8 +63,7 @@ appleiii_fdc::appleiii_fdc(const machine_config &mconfig, const char *tag, devic void wozfdc_device::device_start() { - astring tempstring; - m_rom_p6 = machine().root_device().memregion(this->subtag(tempstring, DISKII_P6_REGION).c_str())->base(); + m_rom_p6 = machine().root_device().memregion(this->subtag(DISKII_P6_REGION).c_str())->base(); timer = timer_alloc(0); delay_timer = timer_alloc(1); |