Merge pull request #8678 from JosJuice/setting-txt-code-default
Boot: Change pre-defined setting.txt CODE values
This commit is contained in:
commit
9ac28054df
|
@ -245,9 +245,9 @@ bool CBoot::EmulatedBS2_GC(const DiscIO::VolumeDisc& volume)
|
|||
bool CBoot::SetupWiiMemory(IOS::HLE::IOSC::ConsoleType console_type)
|
||||
{
|
||||
static const std::map<DiscIO::Region, const RegionSetting> region_settings = {
|
||||
{DiscIO::Region::NTSC_J, {"JPN", "NTSC", "JP", "LJ"}},
|
||||
{DiscIO::Region::NTSC_J, {"JPN", "NTSC", "JP", "LJH"}},
|
||||
{DiscIO::Region::NTSC_U, {"USA", "NTSC", "US", "LU"}},
|
||||
{DiscIO::Region::PAL, {"EUR", "PAL", "EU", "LE"}},
|
||||
{DiscIO::Region::PAL, {"EUR", "PAL", "EU", "LEH"}},
|
||||
{DiscIO::Region::NTSC_K, {"KOR", "NTSC", "KR", "LKH"}}};
|
||||
auto entryPos = region_settings.find(SConfig::GetInstance().m_region);
|
||||
RegionSetting region_setting = entryPos->second;
|
||||
|
|
Loading…
Reference in New Issue