mirror of
https://github.com/mamedev/mame.git
synced 2024-11-16 07:48:32 +01:00
formats/td0_dsk.cpp: Recognize SSDD images for 3(.5)-inch floppy drives. Fixes loading of CP/M Plus v 1.5 on pcw8256.
This commit is contained in:
parent
7f3d4ebb23
commit
7b871aeff1
1 changed files with 1 additions and 1 deletions
|
@ -902,7 +902,7 @@ bool td0_format::load(util::random_read &io, uint32_t form_factor, const std::ve
|
|||
if(form_factor == floppy_image::FF_525)
|
||||
image->set_variant(floppy_image::SSQD);
|
||||
else
|
||||
return false; // single side 3.5?
|
||||
image->set_variant(floppy_image::SSDD);
|
||||
}
|
||||
break;
|
||||
case 5:
|
||||
|
|
Loading…
Reference in a new issue