Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Check for GC BIOS in userdir before sysdir
  • Loading branch information
magcius committed Aug 11, 2013
1 parent 0ecc498 commit d072998
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Source/Core/Core/Src/CoreParameter.cpp
Expand Up @@ -311,7 +311,10 @@ bool SCoreStartupParameter::AutoSetup(EBootBS2 _BootBS2)
m_strSRAM = File::GetUserPath(F_GCSRAM_IDX);
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 (!File::Exists(m_strBootROM))
Expand Down

0 comments on commit d072998

Please sign in to comment.