summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/ti99/peb
diff options
context:
space:
mode:
author Michael Zapf <github@mizapf.de>2022-01-26 17:46:26 +0100
committer Michael Zapf <github@mizapf.de>2022-01-26 17:47:41 +0100
commit3f083ff7f2a1aa5af9a0c0810a4c7f1de67c4fff (patch)
tree5d0f8bfaa51dd333291d85bd266c8bd70214187c /src/devices/bus/ti99/peb
parent36b1942a4c332b07c7d9ae146bc52f265c76a295 (diff)
ti99: Fixed forgotten DSK4 motor control in DDCC1 controller.
Diffstat (limited to 'src/devices/bus/ti99/peb')
-rw-r--r--src/devices/bus/ti99/peb/myarcfdc.cpp2
1 files changed, 1 insertions, 1 deletions
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);
}