From 2a7e957c61e9a09d386d0a98ba37637a1ea1a744 Mon Sep 17 00:00:00 2001 From: Megamouse Date: Wed, 26 Mar 2025 18:15:30 +0100 Subject: [PATCH] Qt: fix custom icons when "Prefer game data icons" is set --- 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 5c339128df..3bf33f2a8c 100644 --- a/rpcs3/rpcs3qt/game_list_frame.cpp +++ b/rpcs3/rpcs3qt/game_list_frame.cpp @@ -899,7 +899,7 @@ void game_list_frame::OnRefreshFinished() } // Let's fetch the game data icon if preferred or if the path was empty for some reason - if (m_prefer_game_data_icons || entry->info.icon_path.empty()) + if ((m_prefer_game_data_icons && !entry->has_custom_icon) || entry->info.icon_path.empty()) { if (std::string icon_path = other->info.path + "/" + localized_icon; fs::is_file(icon_path)) {