mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-18 00:09:11 +00:00
GameTracker: Fix games not being displayed
This commit is contained in:
parent
cc3a13d4e4
commit
38accd7fc3
1 changed files with 2 additions and 1 deletions
|
@ -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;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue