summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/imagedev
diff options
context:
space:
mode:
author cracyc <cracyc@users.noreply.github.com>2017-10-15 14:04:59 -0500
committer cracyc <cracyc@users.noreply.github.com>2017-10-15 14:04:59 -0500
commit946892c8e0458f8416fd16d8a4f0c3aa00f8b21b (patch)
tree8f44cb265ed0c4faf5702b30b8038934ad3e4333 /src/devices/imagedev
parent1c424550a15242b46d46a6bbedfdc73b4a4c91fe (diff)
hiscore.dat: updates [Leezer]
floppy: comment out breaky stuff (nw)
Diffstat (limited to 'src/devices/imagedev')
-rw-r--r--src/devices/imagedev/floppy.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/devices/imagedev/floppy.cpp b/src/devices/imagedev/floppy.cpp
index 3a674ea47f8..db577ba594a 100644
--- a/src/devices/imagedev/floppy.cpp
+++ b/src/devices/imagedev/floppy.cpp
@@ -785,8 +785,9 @@ attotime floppy_image_device::get_next_transition(const attotime &from_when)
// TODO: Implement a proper spin-up ramp for transition times, also in order
// to cover potential copy protection measures that have direct device
// access (mz)
- if (ready_counter > 0)
- return attotime::never;
+ // MORE TODO: this breaks the tandy2k and pcjr. needs investigation.
+ //if (ready_counter > 0)
+ // return attotime::never;
std::vector<uint32_t> &buf = image->get_buffer(cyl, ss, subcyl);
uint32_t cells = buf.size();