summaryrefslogtreecommitdiffstatshomepage
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/devices/imagedev/floppy.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/imagedev/floppy.cpp b/src/devices/imagedev/floppy.cpp
index 9a4d050130c..eb622f66d85 100644
--- a/src/devices/imagedev/floppy.cpp
+++ b/src/devices/imagedev/floppy.cpp
@@ -2644,7 +2644,7 @@ void mac_floppy_device::track_changed()
float new_rpm;
if(m_mfm)
- new_rpm = 300;
+ new_rpm = is_2m() ? 600 : 300;
else if(cyl <= 15)
new_rpm = 394;
else if(cyl <= 31)