mirror of
https://github.com/RaySollium99/picodrive.git
synced 2025-09-05 15:27:46 -04:00
cd: prefer model2 bios
model1 has some weird random race, hopefully it will go away with better cdc/cdd code in future.
This commit is contained in:
parent
99ade2ee2f
commit
b08a2950f1
2 changed files with 6 additions and 6 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue