diff options
| author | 2019-10-04 23:33:37 +0000 | |
|---|---|---|
| committer | 2019-10-04 23:41:22 +0000 | |
| commit | 2b9b695fa70a2fec13623b051437671a66bb1a0c (patch) | |
| tree | 51e6840cf7c08545032da54a4ec1cb7740ce5074 /src | |
| parent | yuzu_tester: Remove unused variable (diff) | |
| download | yuzu-2b9b695fa70a2fec13623b051437671a66bb1a0c.tar.gz yuzu-2b9b695fa70a2fec13623b051437671a66bb1a0c.tar.xz yuzu-2b9b695fa70a2fec13623b051437671a66bb1a0c.zip | |
yuzu/configure_service: Silence -Wswitch
Diffstat (limited to 'src')
| -rw-r--r-- | src/yuzu/configuration/configure_service.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/yuzu/configuration/configure_service.cpp b/src/yuzu/configuration/configure_service.cpp index 81c9e933f..06566e981 100644 --- a/src/yuzu/configuration/configure_service.cpp +++ b/src/yuzu/configuration/configure_service.cpp | |||
| @@ -73,6 +73,8 @@ std::pair<QString, QString> ConfigureService::BCATDownloadEvents() { | |||
| 73 | const auto res = Service::BCAT::Boxcat::GetStatus(global, map); | 73 | const auto res = Service::BCAT::Boxcat::GetStatus(global, map); |
| 74 | 74 | ||
| 75 | switch (res) { | 75 | switch (res) { |
| 76 | case Service::BCAT::Boxcat::StatusResult::Success: | ||
| 77 | break; | ||
| 76 | case Service::BCAT::Boxcat::StatusResult::Offline: | 78 | case Service::BCAT::Boxcat::StatusResult::Offline: |
| 77 | return {QString{}, | 79 | return {QString{}, |
| 78 | tr("The boxcat service is offline or you are not connected to the internet.")}; | 80 | tr("The boxcat service is offline or you are not connected to the internet.")}; |