mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-09-10 18:20:58 +02:00
GameTracker: Fix games not being displayed
This commit is contained in:
@@ -338,7 +338,8 @@ QSet<QString> GameTracker::FindMissingFiles(const QString& dir)
|
|||||||
while (it->hasNext())
|
while (it->hasNext())
|
||||||
{
|
{
|
||||||
QString path = QFileInfo(it->next()).canonicalFilePath();
|
QString path = QFileInfo(it->next()).canonicalFilePath();
|
||||||
m_tracked_files.remove(path);
|
if (m_tracked_files.contains(path))
|
||||||
|
missing_files.remove(path);
|
||||||
}
|
}
|
||||||
|
|
||||||
return missing_files;
|
return missing_files;
|
||||||
|
Reference in New Issue
Block a user