diff options
author | Morph <39850852+Morph1984@users.noreply.github.com> | 2021-11-04 01:32:26 +0100 |
---|---|---|
committer | Morph <39850852+Morph1984@users.noreply.github.com> | 2021-11-04 21:59:39 +0100 |
commit | a6e6a5ac388b0ef5cde2a1c70921548b9b7a2fe9 (patch) | |
tree | 857364fbaf70a8ced3d5472b74890f7402f26bf4 /src/core/hle/service/acc | |
parent | general: Rename GetTitleID to GetProgramID (diff) | |
download | yuzu-a6e6a5ac388b0ef5cde2a1c70921548b9b7a2fe9.tar yuzu-a6e6a5ac388b0ef5cde2a1c70921548b9b7a2fe9.tar.gz yuzu-a6e6a5ac388b0ef5cde2a1c70921548b9b7a2fe9.tar.bz2 yuzu-a6e6a5ac388b0ef5cde2a1c70921548b9b7a2fe9.tar.lz yuzu-a6e6a5ac388b0ef5cde2a1c70921548b9b7a2fe9.tar.xz yuzu-a6e6a5ac388b0ef5cde2a1c70921548b9b7a2fe9.tar.zst yuzu-a6e6a5ac388b0ef5cde2a1c70921548b9b7a2fe9.zip |
Diffstat (limited to 'src/core/hle/service/acc')
-rw-r--r-- | src/core/hle/service/acc/acc.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/core/hle/service/acc/acc.cpp b/src/core/hle/service/acc/acc.cpp index 4d4fa5ee7..6e63e057e 100644 --- a/src/core/hle/service/acc/acc.cpp +++ b/src/core/hle/service/acc/acc.cpp @@ -16,7 +16,6 @@ #include "core/file_sys/control_metadata.h" #include "core/file_sys/patch_manager.h" #include "core/hle/ipc_helpers.h" -#include "core/hle/kernel/k_process.h" #include "core/hle/kernel/kernel.h" #include "core/hle/service/acc/acc.h" #include "core/hle/service/acc/acc_aa.h" @@ -759,9 +758,8 @@ ResultCode Module::Interface::InitializeApplicationInfoBase() { // TODO(ogniK): This should be changed to reflect the target process for when we have multiple // processes emulated. As we don't actually have pid support we should assume we're just using // our own process - const auto& current_process = system.Kernel().CurrentProcess(); const auto launch_property = - system.GetARPManager().GetLaunchProperty(current_process->GetProgramID()); + system.GetARPManager().GetLaunchProperty(system.GetCurrentProcessProgramID()); if (launch_property.Failed()) { LOG_ERROR(Service_ACC, "Failed to get launch property"); @@ -805,7 +803,7 @@ void Module::Interface::IsUserAccountSwitchLocked(Kernel::HLERequestContext& ctx bool is_locked = false; if (res != Loader::ResultStatus::Success) { - const FileSys::PatchManager pm{system.CurrentProcess()->GetProgramID(), + const FileSys::PatchManager pm{system.GetCurrentProcessProgramID(), system.GetFileSystemController(), system.GetContentProvider()}; const auto nacp_unique = pm.GetControlMetadata().first; |