diff options
author | 2022-03-30 21:26:25 +0200 | |
---|---|---|
committer | 2022-03-30 21:26:37 +0200 | |
commit | 3728913a4ee0db1c590646cc4f89a9da6a0446f9 (patch) | |
tree | 57cd9fba5ba6ad6b30bc498001ec03ef88878084 /src/lib/formats/vdk_dsk.cpp | |
parent | afc735c502c61c1b1560708dc2f309bef20cef50 (diff) |
floppy: revisit the identify returns
Diffstat (limited to 'src/lib/formats/vdk_dsk.cpp')
-rw-r--r-- | src/lib/formats/vdk_dsk.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/formats/vdk_dsk.cpp b/src/lib/formats/vdk_dsk.cpp index 49a0c136616..92c5c4d3e91 100644 --- a/src/lib/formats/vdk_dsk.cpp +++ b/src/lib/formats/vdk_dsk.cpp @@ -41,7 +41,7 @@ int vdk_format::identify(util::random_read &io, uint32_t form_factor, const std: io.read_at(0, id, 2, actual); if (id[0] == 'd' && id[1] == 'k') - return 50; + return FIFID_SIGN; else return 0; } |