diff options
| author | Steven Vascellaro <Stevoisiak@gmail.com> | 2014-12-08 12:00:11 -0500 |
|---|---|---|
| committer | Steven Vascellaro <Stevoisiak@gmail.com> | 2014-12-08 12:00:11 -0500 |
| commit | aeae285c8dd3edbfbd6e06fac3a34e9a98eed651 (patch) | |
| tree | b3bbde95e7f1fdc92bb55cb173dcb4488de16c6e /Source/Core | |
| parent | af5b1063bf662869fdd2f741534d195c761e5993 (diff) | |
Specified where to find CACHE_REVISION
Diffstat (limited to 'Source/Core')
| -rw-r--r-- | Source/Core/DolphinQt/GameList/GameFile.cpp | 4 |
1 files 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; |
