diff options
| author | Lioncash <mathew1800@gmail.com> | 2021-04-26 09:11:33 -0400 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2021-04-26 09:39:49 -0400 |
| commit | dcb91ca4a4a97d279d01ebe010e07298acca1ba9 (patch) | |
| tree | 873cdb75aadc3be02c833c205d8e37c375fa49dd /src/core/hle/service/bcat/backend/boxcat.cpp | |
| parent | 7412f314e452c90783511102ab7d53d452bf74c2 (diff) | |
service: Eliminate cases of member shadowing
Resolves a few localized instances of member variable shadowing. Brings
us a little closer to turning shadowing warnings into errors.
Diffstat (limited to 'src/core/hle/service/bcat/backend/boxcat.cpp')
| -rw-r--r-- | src/core/hle/service/bcat/backend/boxcat.cpp | 4 |
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); |
