Merge pull request #13843 from Dentomologist/gamelist_fix_games_not_being_displayed

Game List: Fix games not being displayed
This commit is contained in:
Jordan Woyak
2025-08-01 18:28:35 -05:00
committed by GitHub

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;