GameTracker: Fix games not being displayed

This commit is contained in:
Dentomologist
2025-08-01 15:43:56 -07:00
parent cc3a13d4e4
commit 38accd7fc3

View File

@@ -338,7 +338,8 @@ QSet<QString> 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;