mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-22 12:45:44 +00:00
main: Silence [[fallthrough]] warning
This commit is contained in:
parent
0c6e683a63
commit
092dda59cb
1 changed files with 2 additions and 3 deletions
|
@ -1421,11 +1421,10 @@ void GMainWindow::OnGameListRemoveInstalledEntry(u64 program_id, InstalledEntryT
|
||||||
[[fallthrough]];
|
[[fallthrough]];
|
||||||
case InstalledEntryType::Update:
|
case InstalledEntryType::Update:
|
||||||
RemoveUpdateContent(program_id, entry_type);
|
RemoveUpdateContent(program_id, entry_type);
|
||||||
if (type == InstalledEntryType::Game) {
|
if (type != InstalledEntryType::Game) {
|
||||||
[[fallthrough]];
|
|
||||||
} else {
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
[[fallthrough]];
|
||||||
case InstalledEntryType::AddOnContent:
|
case InstalledEntryType::AddOnContent:
|
||||||
RemoveAddOnContent(program_id, entry_type);
|
RemoveAddOnContent(program_id, entry_type);
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue