diff options
author | liamwhite <liamwhite@users.noreply.github.com> | 2024-01-31 17:21:34 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-31 17:21:34 +0100 |
commit | 6e92a7a1493b737fe3ca4e762511d2f734f9965e (patch) | |
tree | e7c13cf28b7ff442aef47bfba696bf6dc57dacd5 | |
parent | Merge pull request #12860 from liamwhite/serialization2 (diff) | |
download | yuzu-6e92a7a1493b737fe3ca4e762511d2f734f9965e.tar yuzu-6e92a7a1493b737fe3ca4e762511d2f734f9965e.tar.gz yuzu-6e92a7a1493b737fe3ca4e762511d2f734f9965e.tar.bz2 yuzu-6e92a7a1493b737fe3ca4e762511d2f734f9965e.tar.lz yuzu-6e92a7a1493b737fe3ca4e762511d2f734f9965e.tar.xz yuzu-6e92a7a1493b737fe3ca4e762511d2f734f9965e.tar.zst yuzu-6e92a7a1493b737fe3ca4e762511d2f734f9965e.zip |
-rw-r--r-- | src/core/hle/service/aoc/aoc_u.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/aoc/aoc_u.cpp b/src/core/hle/service/aoc/aoc_u.cpp index 7075ab800..486719cc0 100644 --- a/src/core/hle/service/aoc/aoc_u.cpp +++ b/src/core/hle/service/aoc/aoc_u.cpp @@ -202,7 +202,7 @@ void AOC_U::ListAddOnContent(HLERequestContext& ctx) { LOG_DEBUG(Service_AOC, "called with offset={}, count={}, process_id={}", offset, count, process_id); - const auto current = system.GetApplicationProcessProgramID(); + const auto current = FileSys::GetBaseTitleID(system.GetApplicationProcessProgramID()); std::vector<u32> out; const auto& disabled = Settings::values.disabled_addons[current]; |