mirror of
https://github.com/holub/mame
synced 2025-06-07 21:33:45 +03:00
apple2gs: dont segfault if floppy not present, eg -fdc:3 "" (#7871)
This commit is contained in:
parent
78e551dbc7
commit
9357a69a36
@ -1824,8 +1824,8 @@ TIMER_DEVICE_CALLBACK_MEMBER(apple2gs_state::apple2_interrupt)
|
|||||||
m_motoroff_time--;
|
m_motoroff_time--;
|
||||||
if (m_motoroff_time == 0)
|
if (m_motoroff_time == 0)
|
||||||
{
|
{
|
||||||
m_floppy[2]->get_device()->tfsel_w(0);
|
if (m_floppy[2]->get_device()) m_floppy[2]->get_device()->tfsel_w(0);
|
||||||
m_floppy[3]->get_device()->tfsel_w(0);
|
if (m_floppy[3]->get_device()) m_floppy[3]->get_device()->tfsel_w(0);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user