diff options
author | 2021-03-31 17:23:31 +0200 | |
---|---|---|
committer | 2021-03-31 17:23:45 +0200 | |
commit | 593ce66eb2126027a3b1791a2d549df4d8051d1d (patch) | |
tree | 41b1eaee36ac5ec22f85af698416a7c7c4390c82 /src/lib/formats/flex_dsk.cpp | |
parent | 69bde90a2f5a7d129702e026c965d0415ab6cee3 (diff) |
floppy: What wd177x_dsk has become should be taken out and shot
Diffstat (limited to 'src/lib/formats/flex_dsk.cpp')
-rw-r--r-- | src/lib/formats/flex_dsk.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/formats/flex_dsk.cpp b/src/lib/formats/flex_dsk.cpp index 13dcbb0f367..692cc4bdc9d 100644 --- a/src/lib/formats/flex_dsk.cpp +++ b/src/lib/formats/flex_dsk.cpp @@ -73,14 +73,14 @@ const char *flex_format::extensions() const int flex_format::identify(io_generic *io, uint32_t form_factor, const std::vector<uint32_t> &variants) { - int type = find_size(io, form_factor); + int type = find_size(io, form_factor, variants); if (type != -1) return 75; return 0; } -int flex_format::find_size(io_generic *io, uint32_t form_factor) +int flex_format::find_size(io_generic *io, uint32_t form_factor, const std::vector<uint32_t> &variants) { uint64_t size = io_generic_size(io); uint8_t boot0[256], boot1[256]; |