summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/imagedev
diff options
context:
space:
mode:
author cracyc <cracyc@users.noreply.github.com>2017-09-30 20:40:30 -0500
committer cracyc <cracyc@users.noreply.github.com>2017-09-30 20:40:30 -0500
commit02ffc512dca47144066e4925f1f4c3574ec3a6bb (patch)
treeb10d4419c44997cebea2acce605760aa8116e88b /src/devices/imagedev
parentea4e878e083e2708617f8692f29e329103c68ce5 (diff)
isbc: these break the SCT (nw)
floppy: don't set mon_w(0) if there's no image otherwise you have to insert, remove and insert a disk again before ready is set (nw)
Diffstat (limited to 'src/devices/imagedev')
-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 483d303bd38..3a674ea47f8 100644
--- a/src/devices/imagedev/floppy.cpp
+++ b/src/devices/imagedev/floppy.cpp
@@ -359,7 +359,7 @@ void floppy_image_device::device_reset()
revolution_count = 0;
mon = 1;
set_ready(true);
- if(motor_always_on)
+ if(motor_always_on && image)
mon_w(0);
}