Qt/patches: Only consider bootable games

This commit is contained in:
Megamouse 2025-03-03 09:04:32 +01:00
parent d034f6a77f
commit d429776418

View file

@ -73,7 +73,7 @@ patch_manager_dialog::patch_manager_dialog(std::shared_ptr<gui_settings> gui_set
// Get owned games
for (const auto& game : games)
{
if (game)
if (game && game->info.bootable)
{
m_owned_games[game->info.serial].insert(game->GetGameVersion());
}