From b08a2950f1f213508c653c6289bf0c006082c6c5 Mon Sep 17 00:00:00 2001 From: notaz Date: Tue, 24 Sep 2013 02:22:41 +0300 Subject: [PATCH] cd: prefer model2 bios model1 has some weird random race, hopefully it will go away with better cdc/cdd code in future. --- platform/common/emu.c | 6 +++--- platform/libretro.c | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/platform/common/emu.c b/platform/common/emu.c index 140c017..c66c637 100644 --- a/platform/common/emu.c +++ b/platform/common/emu.c @@ -151,13 +151,13 @@ void emu_status_msg(const char *format, ...) } static const char * const biosfiles_us[] = { - "us_scd1_9210", "us_scd2_9306", "SegaCDBIOS9303", "bios_CD_U" + "us_scd2_9306", "SegaCDBIOS9303", "us_scd1_9210", "bios_CD_U" }; static const char * const biosfiles_eu[] = { - "eu_mcd1_9210", "eu_mcd2_9306", "eu_mcd2_9303", "bios_CD_E" + "eu_mcd2_9306", "eu_mcd2_9303", "eu_mcd1_9210", "bios_CD_E" }; static const char * const biosfiles_jp[] = { - "jp_mcd1_9112", "jp_mcd1_9111", "bios_CD_J" + "jp_mcd2_921222", "jp_mcd1_9112", "jp_mcd1_9111", "bios_CD_J" }; static const char *find_bios(int *region, const char *cd_fname) diff --git a/platform/libretro.c b/platform/libretro.c index 21f5a96..4903847 100644 --- a/platform/libretro.c +++ b/platform/libretro.c @@ -585,13 +585,13 @@ static void disk_tray_close(void) static const char * const biosfiles_us[] = { - "us_scd1_9210", "us_scd2_9306", "SegaCDBIOS9303", "bios_CD_U" + "us_scd2_9306", "SegaCDBIOS9303", "us_scd1_9210", "bios_CD_U" }; static const char * const biosfiles_eu[] = { - "eu_mcd1_9210", "eu_mcd2_9306", "eu_mcd2_9303", "bios_CD_E" + "eu_mcd2_9306", "eu_mcd2_9303", "eu_mcd1_9210", "bios_CD_E" }; static const char * const biosfiles_jp[] = { - "jp_mcd1_9112", "jp_mcd1_9111", "bios_CD_J" + "jp_mcd2_921222", "jp_mcd1_9112", "jp_mcd1_9111", "bios_CD_J" }; static void make_system_path(char *buf, size_t buf_size, -- 2.39.2