Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Adds the Wii Korean settings file. It was handled in the wii-network …
…branch in rev c42a6f1. Master handles the settings files differently. Until wii-network merges in to master, this closes issue 5642.
  • Loading branch information
Sonicadvance1 committed Dec 14, 2012
1 parent a6374f2 commit 532fdad
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
Binary file added Data/Sys/Wii/setting-kor.txt
Binary file not shown.
1 change: 1 addition & 0 deletions Source/Core/Common/Src/CommonPaths.h
Expand Up @@ -128,6 +128,7 @@
#define WII_EUR_SETTING "setting-eur.txt"
#define WII_USA_SETTING "setting-usa.txt"
#define WII_JAP_SETTING "setting-jpn.txt"
#define WII_KOR_SETTING "setting-kor.txt"

#define GECKO_CODE_HANDLER "codehandler.bin"

Expand Down
4 changes: 3 additions & 1 deletion Source/Core/Core/Src/Boot/Boot_BS2Emu.cpp
Expand Up @@ -187,8 +187,10 @@ bool CBoot::SetupWiiMemory(unsigned int _CountryCode)
switch((DiscIO::IVolume::ECountry)_CountryCode)
{
case DiscIO::IVolume::COUNTRY_KOREA:
region_filename = File::GetSysDirectory() + WII_SYS_DIR + DIR_SEP + WII_KOR_SETTING;
break;
case DiscIO::IVolume::COUNTRY_TAIWAN:
// TODO: Determine if Korea / Taiwan have their own specific settings.
// TODO: Determine if Taiwan has their own specific settings.
case DiscIO::IVolume::COUNTRY_JAPAN:
region_filename = File::GetSysDirectory() + WII_SYS_DIR + DIR_SEP + WII_JAP_SETTING;
break;
Expand Down

0 comments on commit 532fdad

Please sign in to comment.