From 4905fda371fb2b97c45c60c64415e1a990cd98bd Mon Sep 17 00:00:00 2001 From: Megamouse Date: Thu, 20 Mar 2025 20:56:42 +0100 Subject: [PATCH] Qt: Don't fetch ICON0.PNG from game data for disc games ICON0.PNG is not supposed to be updateable, so we can ignore the hdd0 dir for disc games in that case --- rpcs3/rpcs3qt/game_list_frame.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/rpcs3/rpcs3qt/game_list_frame.cpp b/rpcs3/rpcs3qt/game_list_frame.cpp index b9d7da471c..1f3179a593 100644 --- a/rpcs3/rpcs3qt/game_list_frame.cpp +++ b/rpcs3/rpcs3qt/game_list_frame.cpp @@ -897,7 +897,9 @@ void game_list_frame::OnRefreshFinished() } } - if (!entry->has_custom_icon) + // ICON0.PNG is not supposed to be updateable, so we can ignore the hdd0 dir for disc games in that case + // Let's fetch it anyway if the path was empty for some reason + if (entry->info.icon_path.empty()) { if (std::string icon_path = other->info.path + "/" + localized_icon; fs::is_file(icon_path)) {