diff options
Diffstat (limited to 'src/core/hle/service/bcat')
| -rw-r--r-- | src/core/hle/service/bcat/bcat_module.cpp | 6 |
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: | |||
| 178 | void RequestSyncDeliveryCache(Kernel::HLERequestContext& ctx) { | 178 | void RequestSyncDeliveryCache(Kernel::HLERequestContext& ctx) { |
| 179 | LOG_DEBUG(Service_BCAT, "called"); | 179 | LOG_DEBUG(Service_BCAT, "called"); |
| 180 | 180 | ||
| 181 | backend.Synchronize({system.CurrentProcess()->GetTitleID(), | 181 | backend.Synchronize({system.CurrentProcess()->GetProgramID(), |
| 182 | GetCurrentBuildID(system.GetCurrentProcessBuildID())}, | 182 | GetCurrentBuildID(system.GetCurrentProcessBuildID())}, |
| 183 | GetProgressBackend(SyncType::Normal)); | 183 | GetProgressBackend(SyncType::Normal)); |
| 184 | 184 | ||
| @@ -195,7 +195,7 @@ private: | |||
| 195 | 195 | ||
| 196 | LOG_DEBUG(Service_BCAT, "called, name={}", name); | 196 | LOG_DEBUG(Service_BCAT, "called, name={}", name); |
| 197 | 197 | ||
| 198 | backend.SynchronizeDirectory({system.CurrentProcess()->GetTitleID(), | 198 | backend.SynchronizeDirectory({system.CurrentProcess()->GetProgramID(), |
| 199 | GetCurrentBuildID(system.GetCurrentProcessBuildID())}, | 199 | GetCurrentBuildID(system.GetCurrentProcessBuildID())}, |
| 200 | name, GetProgressBackend(SyncType::Directory)); | 200 | name, GetProgressBackend(SyncType::Directory)); |
| 201 | 201 | ||
| @@ -556,7 +556,7 @@ private: | |||
| 556 | void Module::Interface::CreateDeliveryCacheStorageService(Kernel::HLERequestContext& ctx) { | 556 | void Module::Interface::CreateDeliveryCacheStorageService(Kernel::HLERequestContext& ctx) { |
| 557 | LOG_DEBUG(Service_BCAT, "called"); | 557 | LOG_DEBUG(Service_BCAT, "called"); |
| 558 | 558 | ||
| 559 | const auto title_id = system.CurrentProcess()->GetTitleID(); | 559 | const auto title_id = system.CurrentProcess()->GetProgramID(); |
| 560 | IPC::ResponseBuilder rb{ctx, 2, 0, 1}; | 560 | IPC::ResponseBuilder rb{ctx, 2, 0, 1}; |
| 561 | rb.Push(ResultSuccess); | 561 | rb.Push(ResultSuccess); |
| 562 | rb.PushIpcInterface<IDeliveryCacheStorageService>(system, fsc.GetBCATDirectory(title_id)); | 562 | rb.PushIpcInterface<IDeliveryCacheStorageService>(system, fsc.GetBCATDirectory(title_id)); |