From 04098a63d5b2d5847d8e237668f4f6f06d63e5a6 Mon Sep 17 00:00:00 2001 From: cracyc Date: Wed, 2 Mar 2022 21:40:41 -0600 Subject: rainbow: fix order of floppy formats --- src/mame/drivers/rainbow.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/mame/drivers/rainbow.cpp b/src/mame/drivers/rainbow.cpp index ebe370d969d..ef9c0ac324a 100644 --- a/src/mame/drivers/rainbow.cpp +++ b/src/mame/drivers/rainbow.cpp @@ -874,8 +874,9 @@ UPD7220_DISPLAY_PIXELS_MEMBER( rainbow_base_state::hgdc_display_pixels ) void rainbow_base_state::floppy_formats(format_registration &fr) { - fr.add_pc_formats(); + // this order is important as there is a DS 40track 400KB pc format that is the same size as the SS 80track rx50 format fr.add(FLOPPY_RX50IMG_FORMAT); + fr.add_pc_formats(); } static void rainbow_floppies(device_slot_interface &device) -- cgit v1.2.3