mirror of
https://github.com/RPCS3/rpcs3.git
synced 2026-01-06 08:40:21 +01:00
Qt/patches: Only consider bootable games
This commit is contained in:
parent
d034f6a77f
commit
d429776418
|
|
@ -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());
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue