From fd651cf5e6c20b905012a9f266e90e3adace7683 Mon Sep 17 00:00:00 2001 From: JosJuice Date: Sat, 26 May 2018 19:09:33 +0200 Subject: [PATCH] GameFileCache: Fix a comment mistake --- Source/Core/UICommon/GameFileCache.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/UICommon/GameFileCache.cpp b/Source/Core/UICommon/GameFileCache.cpp index 4302aecc44..7f9b7015b2 100644 --- a/Source/Core/UICommon/GameFileCache.cpp +++ b/Source/Core/UICommon/GameFileCache.cpp @@ -92,7 +92,7 @@ bool GameFileCache::Update( bool cache_changed = false; // Delete paths that aren't in game_paths from m_cached_files, - // while simultaneously deleting paths that aren't in m_cached_files from game_paths. + // while simultaneously deleting paths that are in m_cached_files from game_paths. // For the sake of speed, we don't care about maintaining the order of m_cached_files. { auto it = m_cached_files.begin();