Specified where to find CACHE_REVISION

This commit is contained in:
Steven Vascellaro 2014-12-08 12:00:11 -05:00
parent af5b1063bf
commit aeae285c8d

View File

@ -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;