From 544a458f20a739f2572d560f470192a671d457d1 Mon Sep 17 00:00:00 2001 From: Megamouse Date: Thu, 1 Jul 2021 20:01:08 +0200 Subject: [PATCH] Qt: show patch version for disc games regardless of the patch category Patches for disc games can also appear as "TV App" etc. --- rpcs3/rpcs3qt/game_list_frame.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpcs3/rpcs3qt/game_list_frame.cpp b/rpcs3/rpcs3qt/game_list_frame.cpp index e011eb8ac9..3c516db33e 100644 --- a/rpcs3/rpcs3qt/game_list_frame.cpp +++ b/rpcs3/rpcs3qt/game_list_frame.cpp @@ -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))