diff options
| author | 2021-11-03 14:15:51 -0400 | |
|---|---|---|
| committer | 2021-11-04 16:57:16 -0400 | |
| commit | 64275dfbf4e852f6cc55d6a4cec3b92743cdaf7e (patch) | |
| tree | 2d5901f0a26f16175cfd629a2a4503c368e4b88c /src/core/hle/service/acc | |
| parent | Merge pull request #7282 from ameerj/core-includes (diff) | |
| download | yuzu-64275dfbf4e852f6cc55d6a4cec3b92743cdaf7e.tar.gz yuzu-64275dfbf4e852f6cc55d6a4cec3b92743cdaf7e.tar.xz yuzu-64275dfbf4e852f6cc55d6a4cec3b92743cdaf7e.zip | |
general: Rename GetTitleID to GetProgramID
Diffstat (limited to 'src/core/hle/service/acc')
| -rw-r--r-- | src/core/hle/service/acc/acc.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/service/acc/acc.cpp b/src/core/hle/service/acc/acc.cpp index 4af2c3a8d..4d4fa5ee7 100644 --- a/src/core/hle/service/acc/acc.cpp +++ b/src/core/hle/service/acc/acc.cpp | |||
| @@ -761,7 +761,7 @@ ResultCode Module::Interface::InitializeApplicationInfoBase() { | |||
| 761 | // our own process | 761 | // our own process |
| 762 | const auto& current_process = system.Kernel().CurrentProcess(); | 762 | const auto& current_process = system.Kernel().CurrentProcess(); |
| 763 | const auto launch_property = | 763 | const auto launch_property = |
| 764 | system.GetARPManager().GetLaunchProperty(current_process->GetTitleID()); | 764 | system.GetARPManager().GetLaunchProperty(current_process->GetProgramID()); |
| 765 | 765 | ||
| 766 | if (launch_property.Failed()) { | 766 | if (launch_property.Failed()) { |
| 767 | LOG_ERROR(Service_ACC, "Failed to get launch property"); | 767 | LOG_ERROR(Service_ACC, "Failed to get launch property"); |
| @@ -805,7 +805,7 @@ void Module::Interface::IsUserAccountSwitchLocked(Kernel::HLERequestContext& ctx | |||
| 805 | bool is_locked = false; | 805 | bool is_locked = false; |
| 806 | 806 | ||
| 807 | if (res != Loader::ResultStatus::Success) { | 807 | if (res != Loader::ResultStatus::Success) { |
| 808 | const FileSys::PatchManager pm{system.CurrentProcess()->GetTitleID(), | 808 | const FileSys::PatchManager pm{system.CurrentProcess()->GetProgramID(), |
| 809 | system.GetFileSystemController(), | 809 | system.GetFileSystemController(), |
| 810 | system.GetContentProvider()}; | 810 | system.GetContentProvider()}; |
| 811 | const auto nacp_unique = pm.GetControlMetadata().first; | 811 | const auto nacp_unique = pm.GetControlMetadata().first; |