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/uniflex_dsk.cpp | |
parent | afc735c502c61c1b1560708dc2f309bef20cef50 (diff) |
floppy: revisit the identify returns
Diffstat (limited to 'src/lib/formats/uniflex_dsk.cpp')
-rw-r--r-- | src/lib/formats/uniflex_dsk.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/formats/uniflex_dsk.cpp b/src/lib/formats/uniflex_dsk.cpp index 4eb63461875..fe682417b09 100644 --- a/src/lib/formats/uniflex_dsk.cpp +++ b/src/lib/formats/uniflex_dsk.cpp @@ -39,7 +39,7 @@ int uniflex_format::identify(util::random_read &io, uint32_t form_factor, const int const type = find_size(io, form_factor, variants); if (type != -1) - return 75; + return FIFID_SIZE; return 0; } |