summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/imagedev/floppy.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/imagedev/floppy.cpp')
-rw-r--r--src/devices/imagedev/floppy.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/imagedev/floppy.cpp b/src/devices/imagedev/floppy.cpp
index eb46cc14e8b..ba41355a74e 100644
--- a/src/devices/imagedev/floppy.cpp
+++ b/src/devices/imagedev/floppy.cpp
@@ -288,7 +288,7 @@ void floppy_image_device::set_rpm(float _rpm)
rpm = _rpm;
rev_time = attotime::from_double(60/rpm);
- angular_speed = rpm/300.0*2e8;
+ angular_speed = rpm/60.0*2e8;
}
void floppy_image_device::setup_write(floppy_image_format_t *_output_format)
@@ -2560,7 +2560,7 @@ void mac_floppy_device::track_changed()
else if(cyl <= 63)
new_rpm = 525;
else
- new_rpm = 590;
+ new_rpm = 590;
if(rpm != new_rpm)
set_rpm(new_rpm);