aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/service/bcat
diff options
context:
space:
mode:
authorMorph <39850852+Morph1984@users.noreply.github.com>2021-11-03 14:15:51 -0400
committerMorph <39850852+Morph1984@users.noreply.github.com>2021-11-04 16:57:16 -0400
commit64275dfbf4e852f6cc55d6a4cec3b92743cdaf7e (patch)
tree2d5901f0a26f16175cfd629a2a4503c368e4b88c /src/core/hle/service/bcat
parentf178a8ef0ce1ba602b0c857ed5993880a74d6a69 (diff)
general: Rename GetTitleID to GetProgramID
Diffstat (limited to 'src/core/hle/service/bcat')
-rw-r--r--src/core/hle/service/bcat/bcat_module.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/hle/service/bcat/bcat_module.cpp b/src/core/hle/service/bcat/bcat_module.cpp
index 36bd2a052..c2feba887 100644
--- a/src/core/hle/service/bcat/bcat_module.cpp
+++ b/src/core/hle/service/bcat/bcat_module.cpp
@@ -178,7 +178,7 @@ private:
void RequestSyncDeliveryCache(Kernel::HLERequestContext& ctx) {
LOG_DEBUG(Service_BCAT, "called");
- backend.Synchronize({system.CurrentProcess()->GetTitleID(),
+ backend.Synchronize({system.CurrentProcess()->GetProgramID(),
GetCurrentBuildID(system.GetCurrentProcessBuildID())},
GetProgressBackend(SyncType::Normal));
@@ -195,7 +195,7 @@ private:
LOG_DEBUG(Service_BCAT, "called, name={}", name);
- backend.SynchronizeDirectory({system.CurrentProcess()->GetTitleID(),
+ backend.SynchronizeDirectory({system.CurrentProcess()->GetProgramID(),
GetCurrentBuildID(system.GetCurrentProcessBuildID())},
name, GetProgressBackend(SyncType::Directory));
@@ -556,7 +556,7 @@ private:
void Module::Interface::CreateDeliveryCacheStorageService(Kernel::HLERequestContext& ctx) {
LOG_DEBUG(Service_BCAT, "called");
- const auto title_id = system.CurrentProcess()->GetTitleID();
+ const auto title_id = system.CurrentProcess()->GetProgramID();
IPC::ResponseBuilder rb{ctx, 2, 0, 1};
rb.Push(ResultSuccess);
rb.PushIpcInterface<IDeliveryCacheStorageService>(system, fsc.GetBCATDirectory(title_id));