Skip to content
Snippets Groups Projects
Commit 2b9b695f authored by ReinUsesLisp's avatar ReinUsesLisp
Browse files

yuzu/configure_service: Silence -Wswitch

parent e03f46fb
No related branches found
No related tags found
No related merge requests found
...@@ -73,6 +73,8 @@ std::pair<QString, QString> ConfigureService::BCATDownloadEvents() { ...@@ -73,6 +73,8 @@ std::pair<QString, QString> ConfigureService::BCATDownloadEvents() {
const auto res = Service::BCAT::Boxcat::GetStatus(global, map); const auto res = Service::BCAT::Boxcat::GetStatus(global, map);
switch (res) { switch (res) {
case Service::BCAT::Boxcat::StatusResult::Success:
break;
case Service::BCAT::Boxcat::StatusResult::Offline: case Service::BCAT::Boxcat::StatusResult::Offline:
return {QString{}, return {QString{},
tr("The boxcat service is offline or you are not connected to the internet.")}; tr("The boxcat service is offline or you are not connected to the internet.")};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment