ti99: Fixed forgotten DSK4 motor control in DDCC1 controller.

This commit is contained in:
Michael Zapf 2022-01-26 17:46:26 +01:00
parent 36b1942a4c
commit 3f083ff7f2

View File

@ -260,7 +260,7 @@ WRITE_LINE_MEMBER( myarc_fdc_device::fdc_mon_w )
// Do not start the motors when no drive is selected. However, motors
// can always be stopped.
if (m_selected_drive != 0 || state==1)
for (int i=0; i < 3; i++)
for (int i = 0; i < 4; i++)
if (m_floppy[i] != nullptr) m_floppy[i]->mon_w(state);
}