summaryrefslogtreecommitdiffstatshomepage
path: root/src
diff options
context:
space:
mode:
author Michael Zapf <michael.zapf@mizapf.de>2014-01-05 16:25:21 +0000
committer Michael Zapf <michael.zapf@mizapf.de>2014-01-05 16:25:21 +0000
commit7fa1432265d709cb88791ab4d5e97f91f1480460 (patch)
tree36ade0f9d2f8fe8cf1d93a964282c9b551429320 /src
parent354cacc1c79e04373a3dfcd61c2f69db92632e34 (diff)
Prevent clock bit to be deleted after CRC in FM. [Michael Zapf]
Diffstat (limited to 'src')
-rw-r--r--src/lib/formats/flopimg.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lib/formats/flopimg.c b/src/lib/formats/flopimg.c
index 1019e1bf278..5351cfd10ba 100644
--- a/src/lib/formats/flopimg.c
+++ b/src/lib/formats/flopimg.c
@@ -1088,6 +1088,7 @@ bool floppy_image_format_t::type_data_mfm(int type, int p1, const gen_crc_info *
return !type_no_data(type) &&
type != RAW &&
type != RAWBITS &&
+ type != FM &&
(type != CRC || (crcs[p1].type != CRC_CCITT && crcs[p1].type != CRC_CCITT_FM && crcs[p1].type != CRC_AMIGA));
}