From 3f083ff7f2a1aa5af9a0c0810a4c7f1de67c4fff Mon Sep 17 00:00:00 2001 From: Michael Zapf Date: Wed, 26 Jan 2022 17:46:26 +0100 Subject: [PATCH] ti99: Fixed forgotten DSK4 motor control in DDCC1 controller. --- src/devices/bus/ti99/peb/myarcfdc.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/devices/bus/ti99/peb/myarcfdc.cpp b/src/devices/bus/ti99/peb/myarcfdc.cpp index 4e85d5be0c0..b4e535038df 100644 --- a/src/devices/bus/ti99/peb/myarcfdc.cpp +++ b/src/devices/bus/ti99/peb/myarcfdc.cpp @@ -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); }