mirror of
https://git.suyu.dev/suyu/suyu
synced 2024-11-01 04:47:53 +00:00
main: Silence [[fallthrough]] warning
This commit is contained in:
parent
ef02370816
commit
f78e44762a
1 changed files with 2 additions and 3 deletions
|
@ -1421,11 +1421,10 @@ void GMainWindow::OnGameListRemoveInstalledEntry(u64 program_id, InstalledEntryT
|
|||
[[fallthrough]];
|
||||
case InstalledEntryType::Update:
|
||||
RemoveUpdateContent(program_id, entry_type);
|
||||
if (type == InstalledEntryType::Game) {
|
||||
[[fallthrough]];
|
||||
} else {
|
||||
if (type != InstalledEntryType::Game) {
|
||||
break;
|
||||
}
|
||||
[[fallthrough]];
|
||||
case InstalledEntryType::AddOnContent:
|
||||
RemoveAddOnContent(program_id, entry_type);
|
||||
break;
|
||||
|
|
Loading…
Reference in a new issue