mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-05 06:26:49 +00:00
patch_manager: fix owned games o. for all versions
This commit is contained in:
parent
a5368d766a
commit
ef203f6bcb
5 changed files with 19 additions and 12 deletions
|
|
@ -332,7 +332,7 @@ void patch_manager_dialog::filter_patches(const QString& term)
|
|||
const std::string app_version = item->data(0, app_version_role).toString().toStdString();
|
||||
|
||||
if (serial != patch_key::all &&
|
||||
(m_owned_games.find(serial) == m_owned_games.end() || !m_owned_games.at(serial).contains(app_version)))
|
||||
(m_owned_games.find(serial) == m_owned_games.end() || (app_version != patch_key::all && !m_owned_games.at(serial).contains(app_version))))
|
||||
{
|
||||
item->setHidden(true);
|
||||
return 0;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue