From aeae285c8dd3edbfbd6e06fac3a34e9a98eed651 Mon Sep 17 00:00:00 2001 From: Steven Vascellaro Date: Mon, 8 Dec 2014 12:00:11 -0500 Subject: [PATCH] Specified where to find CACHE_REVISION --- Source/Core/DolphinQt/GameList/GameFile.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Core/DolphinQt/GameList/GameFile.cpp b/Source/Core/DolphinQt/GameList/GameFile.cpp index 70cd91b64c..c4fbea34e5 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;