diff --git a/Source/Core/DolphinQt/GameList/GameFile.cpp b/Source/Core/DolphinQt/GameList/GameFile.cpp index 4cfe616e18..f5f4dd9899 100644 --- a/Source/Core/DolphinQt/GameList/GameFile.cpp +++ b/Source/Core/DolphinQt/GameList/GameFile.cpp @@ -152,7 +152,7 @@ bool GameFile::LoadFromCache() if (!file.open(QFile::ReadOnly)) return false; - // If you modify the code below, you MUST bump the CACHE_REVISION! + // If you modify the code below, you MUST bump the CACHE_REVISION! (ISOFile.cpp) QDataStream stream(&file); stream.setVersion(DATASTREAM_REVISION); @@ -195,7 +195,7 @@ void GameFile::SaveToCache() if (!file.open(QFile::WriteOnly)) return; - // If you modify the code below, you MUST bump the CACHE_REVISION! + // If you modify the code below, you MUST bump the CACHE_REVISION! (ISOFile.cpp) QDataStream stream(&file); stream.setVersion(DATASTREAM_REVISION); stream << CACHE_REVISION;