summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/bcat/backend/boxcat.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2021-04-27 01:19:49 +0200
committerGitHub <noreply@github.com>2021-04-27 01:19:49 +0200
commitcd80471c902540ae1086732234d45b6fb5b2e169 (patch)
tree7a58e71917ee449e441e726b662b78757a3310d8 /src/core/hle/service/bcat/backend/boxcat.cpp
parentMerge pull request #6236 from Morph1984/swkbd-button-hint-scaling (diff)
parentservice: Eliminate cases of member shadowing (diff)
downloadyuzu-cd80471c902540ae1086732234d45b6fb5b2e169.tar
yuzu-cd80471c902540ae1086732234d45b6fb5b2e169.tar.gz
yuzu-cd80471c902540ae1086732234d45b6fb5b2e169.tar.bz2
yuzu-cd80471c902540ae1086732234d45b6fb5b2e169.tar.lz
yuzu-cd80471c902540ae1086732234d45b6fb5b2e169.tar.xz
yuzu-cd80471c902540ae1086732234d45b6fb5b2e169.tar.zst
yuzu-cd80471c902540ae1086732234d45b6fb5b2e169.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/bcat/backend/boxcat.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/service/bcat/backend/boxcat.cpp b/src/core/hle/service/bcat/backend/boxcat.cpp
index 78c047bd2..cee1774d1 100644
--- a/src/core/hle/service/bcat/backend/boxcat.cpp
+++ b/src/core/hle/service/bcat/backend/boxcat.cpp
@@ -415,9 +415,9 @@ std::optional<std::vector<u8>> Boxcat::GetLaunchParameter(TitleIDVersion title)
if (Settings::values.bcat_boxcat_local) {
LOG_INFO(Service_BCAT, "Boxcat using local data by override, skipping download.");
} else {
- Boxcat::Client client{path, title.title_id, title.build_id};
+ Client launch_client{path, title.title_id, title.build_id};
- const auto res = client.DownloadLaunchParam();
+ const auto res = launch_client.DownloadLaunchParam();
if (res != DownloadResult::Success) {
LOG_ERROR(Service_BCAT, "Boxcat synchronization failed with error '{}'!", res);