mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-15 05:47:56 -07:00
Check for GC BIOS in userdir before sysdir
This commit is contained in:
parent
0ecc498585
commit
d0729983b0
@ -311,7 +311,10 @@ bool SCoreStartupParameter::AutoSetup(EBootBS2 _BootBS2)
|
|||||||
m_strSRAM = File::GetUserPath(F_GCSRAM_IDX);
|
m_strSRAM = File::GetUserPath(F_GCSRAM_IDX);
|
||||||
if (!bWii)
|
if (!bWii)
|
||||||
{
|
{
|
||||||
m_strBootROM = File::GetSysDirectory() + GC_SYS_DIR + DIR_SEP + Region + DIR_SEP GC_IPL;
|
m_strBootROM = File::GetUserPath(D_GCUSER_IDX) + DIR_SEP + Region + DIR_SEP GC_IPL;
|
||||||
|
if (!File::Exists(m_strBootROM))
|
||||||
|
m_strBootROM = File::GetSysDirectory() + GC_SYS_DIR + DIR_SEP + Region + DIR_SEP GC_IPL;
|
||||||
|
|
||||||
if (!bHLE_BS2)
|
if (!bHLE_BS2)
|
||||||
{
|
{
|
||||||
if (!File::Exists(m_strBootROM))
|
if (!File::Exists(m_strBootROM))
|
||||||
|
Loading…
Reference in New Issue
Block a user