diff options
| author | 2022-04-25 04:00:43 -0700 | |
|---|---|---|
| committer | 2022-04-26 15:18:20 +1000 | |
| commit | a7e49b61e69c4ffbba5d601260adbc443da3bd9f (patch) | |
| tree | 6ff90249f662f48fb3b23f5fae9b2814fa88f8a2 /src | |
| parent | 1bf515ae23a51bd41a73339fd09a8f69d813f6ea (diff) | |
osborne1.cpp: revert floppy device back to SSDD (#9625)
Partially reverts an old commit from @Robbbert (https://github.com/mamedev/mame/commit/247939853301565efd348cad12b04fc957707bc2) 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.
Diffstat (limited to 'src')
| -rw-r--r-- | src/mame/drivers/osborne1.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/osborne1.cpp b/src/mame/drivers/osborne1.cpp index 43501d3c897..4eb48432f7d 100644 --- a/src/mame/drivers/osborne1.cpp +++ b/src/mame/drivers/osborne1.cpp @@ -258,7 +258,7 @@ INPUT_PORTS_END 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("525ssdd", FLOPPY_525_QD); // SSDD) // MPI 52(?), custom Osborne electronics + device.option_add("525ssdd", FLOPPY_525_SSDD); // MPI 52(?), custom Osborne electronics } |
