diff options
author | bunnei <bunneidev@gmail.com> | 2020-07-27 21:37:52 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-27 21:37:52 +0200 |
commit | f97c2cdd0b649095caa2fbd9b956e589b7694cbd (patch) | |
tree | 05a0e185319dd8570595f98bddd0ac72266cab4e /src | |
parent | Merge pull request #4432 from bylaws/patch-1 (diff) | |
parent | remove unused variable; (diff) | |
download | yuzu-f97c2cdd0b649095caa2fbd9b956e589b7694cbd.tar yuzu-f97c2cdd0b649095caa2fbd9b956e589b7694cbd.tar.gz yuzu-f97c2cdd0b649095caa2fbd9b956e589b7694cbd.tar.bz2 yuzu-f97c2cdd0b649095caa2fbd9b956e589b7694cbd.tar.lz yuzu-f97c2cdd0b649095caa2fbd9b956e589b7694cbd.tar.xz yuzu-f97c2cdd0b649095caa2fbd9b956e589b7694cbd.tar.zst yuzu-f97c2cdd0b649095caa2fbd9b956e589b7694cbd.zip |
Diffstat (limited to 'src')
-rw-r--r-- | src/core/hle/service/am/am.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/core/hle/service/am/am.cpp b/src/core/hle/service/am/am.cpp index 4e7a0bec9..ceed20609 100644 --- a/src/core/hle/service/am/am.cpp +++ b/src/core/hle/service/am/am.cpp @@ -1405,7 +1405,6 @@ void IApplicationFunctions::GetDesiredLanguage(Kernel::HLERequestContext& ctx) { // Get supported languages from NACP, if possible // Default to 0 (all languages supported) u32 supported_languages = 0; - FileSys::PatchManager pm{system.CurrentProcess()->GetTitleID()}; const auto res = [this] { const auto title_id = system.CurrentProcess()->GetTitleID(); |