mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-08-08 01:00:11 +00:00
Qt: show patch version for disc games regardless of the patch category
Patches for disc games can also appear as "TV App" etc.
This commit is contained in:
parent
285b9dad83
commit
544a458f20
1 changed files with 1 additions and 1 deletions
|
@ -748,7 +748,7 @@ void game_list_frame::OnRefreshFinished()
|
||||||
return false;
|
return false;
|
||||||
};
|
};
|
||||||
|
|
||||||
if (entry->info.serial == other->info.serial && other->info.category == "GD" && other->info.app_ver != cat_unknown_localized)
|
if (entry->info.serial == other->info.serial && other->info.category != "DG" && other->info.app_ver != cat_unknown_localized)
|
||||||
{
|
{
|
||||||
// Update the app version if it's higher than the disc's version (old games may not have an app version)
|
// Update the app version if it's higher than the disc's version (old games may not have an app version)
|
||||||
if (entry->info.app_ver == cat_unknown_localized || version_is_bigger(other->info.app_ver, entry->info.app_ver, entry->info.serial, true))
|
if (entry->info.app_ver == cat_unknown_localized || version_is_bigger(other->info.app_ver, entry->info.app_ver, entry->info.serial, true))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue