summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/aoc
diff options
context:
space:
mode:
authorMorph <39850852+Morph1984@users.noreply.github.com>2021-11-05 01:34:20 +0100
committerGitHub <noreply@github.com>2021-11-05 01:34:20 +0100
commit3a71ff44f82304b3e781c89fb60bd87c2c7afa3c (patch)
tree2244cf6a21d45b6bbb5c57d77e154c130e415961 /src/core/hle/service/aoc
parentMerge pull request #7289 from ameerj/perf-stat-shutdown (diff)
parentgeneral: Get the current process program id directly from the system (diff)
downloadyuzu-3a71ff44f82304b3e781c89fb60bd87c2c7afa3c.tar
yuzu-3a71ff44f82304b3e781c89fb60bd87c2c7afa3c.tar.gz
yuzu-3a71ff44f82304b3e781c89fb60bd87c2c7afa3c.tar.bz2
yuzu-3a71ff44f82304b3e781c89fb60bd87c2c7afa3c.tar.lz
yuzu-3a71ff44f82304b3e781c89fb60bd87c2c7afa3c.tar.xz
yuzu-3a71ff44f82304b3e781c89fb60bd87c2c7afa3c.tar.zst
yuzu-3a71ff44f82304b3e781c89fb60bd87c2c7afa3c.zip
Diffstat (limited to 'src/core/hle/service/aoc')
-rw-r--r--src/core/hle/service/aoc/aoc_u.cpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/core/hle/service/aoc/aoc_u.cpp b/src/core/hle/service/aoc/aoc_u.cpp
index 50264f69e..3c83717b5 100644
--- a/src/core/hle/service/aoc/aoc_u.cpp
+++ b/src/core/hle/service/aoc/aoc_u.cpp
@@ -17,7 +17,6 @@
#include "core/file_sys/registered_cache.h"
#include "core/hle/ipc_helpers.h"
#include "core/hle/kernel/k_event.h"
-#include "core/hle/kernel/k_process.h"
#include "core/hle/service/aoc/aoc_u.h"
#include "core/loader/loader.h"
@@ -157,7 +156,7 @@ void AOC_U::CountAddOnContent(Kernel::HLERequestContext& ctx) {
IPC::ResponseBuilder rb{ctx, 3};
rb.Push(ResultSuccess);
- const auto current = system.CurrentProcess()->GetTitleID();
+ const auto current = system.GetCurrentProcessProgramID();
const auto& disabled = Settings::values.disabled_addons[current];
if (std::find(disabled.begin(), disabled.end(), "DLC") != disabled.end()) {
@@ -184,7 +183,7 @@ void AOC_U::ListAddOnContent(Kernel::HLERequestContext& ctx) {
LOG_DEBUG(Service_AOC, "called with offset={}, count={}, process_id={}", offset, count,
process_id);
- const auto current = system.CurrentProcess()->GetTitleID();
+ const auto current = system.GetCurrentProcessProgramID();
std::vector<u32> out;
const auto& disabled = Settings::values.disabled_addons[current];
@@ -230,7 +229,7 @@ void AOC_U::GetAddOnContentBaseId(Kernel::HLERequestContext& ctx) {
IPC::ResponseBuilder rb{ctx, 4};
rb.Push(ResultSuccess);
- const auto title_id = system.CurrentProcess()->GetTitleID();
+ const auto title_id = system.GetCurrentProcessProgramID();
const FileSys::PatchManager pm{title_id, system.GetFileSystemController(),
system.GetContentProvider()};