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/bcat | |
| 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/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)); |