diff options
author | CrazyMax <mtabachenko@gmail.com> | 2020-07-08 18:45:06 +0200 |
---|---|---|
committer | CrazyMax <mtabachenko@gmail.com> | 2020-07-08 18:45:06 +0200 |
commit | cf76769026ae417fa3822d499f6a55ef084ec2da (patch) | |
tree | eb1d6774bba2ef7976f6471136307bead9a44df9 /src | |
parent | Merge pull request #4243 from CrazyMax/display_version (diff) | |
download | yuzu-cf76769026ae417fa3822d499f6a55ef084ec2da.tar yuzu-cf76769026ae417fa3822d499f6a55ef084ec2da.tar.gz yuzu-cf76769026ae417fa3822d499f6a55ef084ec2da.tar.bz2 yuzu-cf76769026ae417fa3822d499f6a55ef084ec2da.tar.lz yuzu-cf76769026ae417fa3822d499f6a55ef084ec2da.tar.xz yuzu-cf76769026ae417fa3822d499f6a55ef084ec2da.tar.zst yuzu-cf76769026ae417fa3822d499f6a55ef084ec2da.zip |
Diffstat (limited to 'src')
-rw-r--r-- | src/core/hle/service/am/am.cpp | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/src/core/hle/service/am/am.cpp b/src/core/hle/service/am/am.cpp index 24cfb370b..32fad35f3 100644 --- a/src/core/hle/service/am/am.cpp +++ b/src/core/hle/service/am/am.cpp @@ -1389,7 +1389,19 @@ void IApplicationFunctions::GetDesiredLanguage(Kernel::HLERequestContext& ctx) { u32 supported_languages = 0; FileSys::PatchManager pm{system.CurrentProcess()->GetTitleID()}; - const auto res = pm.GetControlMetadata(); + const auto res = [this] { + const auto title_id = system.CurrentProcess()->GetTitleID(); + + FileSys::PatchManager pm{title_id}; + auto res = pm.GetControlMetadata(); + if (res.first != nullptr) { + return res; + } + + FileSys::PatchManager pm_update{FileSys::GetUpdateTitleID(title_id)}; + return pm_update.GetControlMetadata(); + }(); + if (res.first != nullptr) { supported_languages = res.first->GetSupportedLanguages(); } |