diff options
Diffstat (limited to 'src/lib/formats/poly_dsk.cpp')
-rw-r--r-- | src/lib/formats/poly_dsk.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/formats/poly_dsk.cpp b/src/lib/formats/poly_dsk.cpp index 221913a5439..cf746b78624 100644 --- a/src/lib/formats/poly_dsk.cpp +++ b/src/lib/formats/poly_dsk.cpp @@ -82,10 +82,10 @@ bool poly_cpm_format::load(io_generic *io, uint32_t form_factor, floppy_image *i head_num = 2; break; } - + int cell_count = (form_factor == floppy_image::FF_525) ? 50000 : 100000; int offset = 0; - + for (int track = 0; track < total_tracks; track++) for (int head = 0; head < head_num; head++) { |