diff options
author | 2022-08-17 19:10:11 +1000 | |
---|---|---|
committer | 2022-08-17 19:10:11 +1000 | |
commit | e8989e30e7f141c2fdf1010ee7d75971b9022f77 (patch) | |
tree | bec3b24d300ea62742c94ef086be07d9a17c0047 /src/emu/emuopts.cpp | |
parent | 55ff6ffe0895d1ebaa9b7f73c2f7e368b7cdd1ee (diff) |
sinclair/specpls3.cpp: Improved floppy drive configuration.
* Default to a single 3" SSDD drive, allow 3.5" SSDD drives.
* specpls3_flop.xml: Corrected interface type for term2a floppy.
Diffstat (limited to 'src/emu/emuopts.cpp')
-rw-r--r-- | src/emu/emuopts.cpp | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/emu/emuopts.cpp b/src/emu/emuopts.cpp index 0da23495dc8..5e0e5735a2e 100644 --- a/src/emu/emuopts.cpp +++ b/src/emu/emuopts.cpp @@ -922,9 +922,12 @@ emu_options::software_options emu_options::evaluate_initial_softlist_options(con // we need to find a mountable image slot, but we need to ensure it is a slot // for which we have not already distributed a part to device_image_interface *image = software_list_device::find_mountable_image( - config, - swpart, - [&results](const device_image_interface &candidate) { return results.image.count(candidate.instance_name()) == 0; }); + config, + swpart, + [&results] (const device_image_interface &candidate) + { + return results.image.count(candidate.instance_name()) == 0; + }); // did we find a slot to put this part into? if (image != nullptr) |