diff options
| author | Pierre Bourdon <delroth@gmail.com> | 2018-09-15 17:37:35 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-09-15 17:37:35 +0200 |
| commit | e3a52b336145a4e7699ecfc7049ff40f8b511948 (patch) | |
| tree | c27f25c826f169187455b936d5eb02e529eb4a0c /Source/Core | |
| parent | ce9e9186f715408af8d9abb60b73ccb1e4d3c474 (diff) | |
| parent | b5bb445f21fb2bd7fbb8efce34e3de356e48e817 (diff) | |
Merge pull request #7415 from JosJuice/korean-shop-channel-check
Include the Korean Wii Shop Channel when checking default credentials
Diffstat (limited to 'Source/Core')
| -rw-r--r-- | Source/Core/Core/CommonTitles.h | 2 | ||||
| -rw-r--r-- | Source/Core/Core/IOS/ES/ES.cpp | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/Source/Core/Core/CommonTitles.h b/Source/Core/Core/CommonTitles.h index 3ed6176e2f..f5bd9e9763 100644 --- a/Source/Core/Core/CommonTitles.h +++ b/Source/Core/Core/CommonTitles.h @@ -14,6 +14,8 @@ constexpr u64 SYSTEM_MENU = 0x0000000100000002; constexpr u64 SHOP = 0x0001000248414241; +constexpr u64 KOREAN_SHOP = 0x000100024841424b; + constexpr u64 IOS(u32 major_version) { return 0x0000000100000000 | major_version; diff --git a/Source/Core/Core/IOS/ES/ES.cpp b/Source/Core/Core/IOS/ES/ES.cpp index 94b8c7e585..8d1f9a9898 100644 --- a/Source/Core/Core/IOS/ES/ES.cpp +++ b/Source/Core/Core/IOS/ES/ES.cpp @@ -209,7 +209,8 @@ bool ES::LaunchTitle(u64 title_id, bool skip_reload) NOTICE_LOG(IOS_ES, "Launching title %016" PRIx64 "...", title_id); - if (title_id == Titles::SHOP && m_ios.GetIOSC().IsUsingDefaultId()) + if ((title_id == Titles::SHOP || title_id == Titles::KOREAN_SHOP) && + m_ios.GetIOSC().IsUsingDefaultId()) { ERROR_LOG(IOS_ES, "Refusing to launch the shop channel with default device credentials"); CriticalAlertT("You cannot use the Wii Shop Channel without using your own device credentials." |
