From 38accd7fc3b77e301218296ce4523dd9f6e9d809 Mon Sep 17 00:00:00 2001 From: Dentomologist Date: Fri, 1 Aug 2025 15:43:56 -0700 Subject: [PATCH] GameTracker: Fix games not being displayed --- Source/Core/DolphinQt/GameList/GameTracker.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Source/Core/DolphinQt/GameList/GameTracker.cpp b/Source/Core/DolphinQt/GameList/GameTracker.cpp index 8f6f76e39a..5b15bfc53c 100644 --- a/Source/Core/DolphinQt/GameList/GameTracker.cpp +++ b/Source/Core/DolphinQt/GameList/GameTracker.cpp @@ -338,7 +338,8 @@ QSet GameTracker::FindMissingFiles(const QString& dir) while (it->hasNext()) { QString path = QFileInfo(it->next()).canonicalFilePath(); - m_tracked_files.remove(path); + if (m_tracked_files.contains(path)) + missing_files.remove(path); } return missing_files;