mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-17 07:49:21 +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())
|
||||
{
|
||||
QString path = QFileInfo(it->next()).canonicalFilePath();
|
||||
m_tracked_files.remove(path);
|
||||
if (m_tracked_files.contains(path))
|
||||
missing_files.remove(path);
|
||||
}
|
||||
|
||||
return missing_files;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue