diff options
Diffstat (limited to 'src/lib/formats/fdd_dsk.cpp')
-rw-r--r-- | src/lib/formats/fdd_dsk.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/formats/fdd_dsk.cpp b/src/lib/formats/fdd_dsk.cpp index a699a605991..98a2cfad7dc 100644 --- a/src/lib/formats/fdd_dsk.cpp +++ b/src/lib/formats/fdd_dsk.cpp @@ -66,7 +66,7 @@ int fdd_format::identify(util::random_read &io, uint32_t form_factor, const std: io.read_at(0, h, 7, actual); if (strncmp((const char *)h, "VFD1.0", 6) == 0) - return 100; + return FIFID_SIGN; return 0; } |