mirror of
https://github.com/holub/mame
synced 2025-07-04 01:18:59 +03:00
osborne1.cpp: revert floppy device back to SSDD (#9625)
Partially reverts an old commit from @Robbbert (2479398533
) where the floppy device was (mistakenly?) set to FLOPPY_525_QD (quad density) from FLOPPY_525_SSDD (single-sided double-density).
As far as I am aware, the Osborne1 only supported SSSD and SSDD disks. Revert appears to resolve known Osborne1 issues [5792](https://mametesters.org/view.php?id=5792) (thanks to @Osso13 for pointing this out) and [8100](https://mametesters.org/view.php?id=8100) @cuavas.
This commit is contained in:
parent
1bf515ae23
commit
a7e49b61e6
@ -258,7 +258,7 @@ INPUT_PORTS_END
|
|||||||
static void osborne1_floppies(device_slot_interface &device)
|
static void osborne1_floppies(device_slot_interface &device)
|
||||||
{
|
{
|
||||||
device.option_add("525sssd", FLOPPY_525_SSSD); // Siemens FDD 100-5, custom Osborne electronics
|
device.option_add("525sssd", FLOPPY_525_SSSD); // Siemens FDD 100-5, custom Osborne electronics
|
||||||
device.option_add("525ssdd", FLOPPY_525_QD); // SSDD) // MPI 52(?), custom Osborne electronics
|
device.option_add("525ssdd", FLOPPY_525_SSDD); // MPI 52(?), custom Osborne electronics
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user