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:
Megamouse 2021-07-01 20:01:08 +02:00
parent 285b9dad83
commit 544a458f20
1 changed files with 1 additions and 1 deletions

View File

@ -748,7 +748,7 @@ void game_list_frame::OnRefreshFinished()
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)
if (entry->info.app_ver == cat_unknown_localized || version_is_bigger(other->info.app_ver, entry->info.app_ver, entry->info.serial, true))