diff options
author | Filippos Karapetis | 2010-05-27 07:50:23 +0000 |
---|---|---|
committer | Filippos Karapetis | 2010-05-27 07:50:23 +0000 |
commit | 739f551852b428115f2cd2bca4f7a0a1054b79a8 (patch) | |
tree | efe71b95969a7db73de3cbea15b5bdd3356ad745 /engines/sci | |
parent | 5f53683cab48becc1d790132cc46ff29a1a3ae26 (diff) | |
download | scummvm-rg350-739f551852b428115f2cd2bca4f7a0a1054b79a8.tar.gz scummvm-rg350-739f551852b428115f2cd2bca4f7a0a1054b79a8.tar.bz2 scummvm-rg350-739f551852b428115f2cd2bca4f7a0a1054b79a8.zip |
Slight formatting, and added a note that audio36 and sync36 resource patches were introduced in SCI2, and didn't exist in SCI0-SCI1.1
svn-id: r49259
Diffstat (limited to 'engines/sci')
-rw-r--r-- | engines/sci/resource.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/engines/sci/resource.cpp b/engines/sci/resource.cpp index 4bffdd3068..0b985ea67c 100644 --- a/engines/sci/resource.cpp +++ b/engines/sci/resource.cpp @@ -1242,9 +1242,9 @@ void ResourceManager::processPatch(ResourceSource *source, ResourceType restype, void ResourceManager::readResourcePatches(ResourceSource *source) { -// Note: since some SCI1 games(KQ5 floppy, SQ4) might use SCI0 naming scheme for patch files -// this function tries to read patch file with any supported naming scheme, -// regardless of s_sciVersion value + // Note: since some SCI1 games(KQ5 floppy, SQ4) might use SCI0 naming scheme for patch files + // this function tries to read patch file with any supported naming scheme, + // regardless of s_sciVersion value Common::String mask, name; Common::ArchiveMemberList files; @@ -1254,6 +1254,7 @@ void ResourceManager::readResourcePatches(ResourceSource *source) { for (int i = kResourceTypeView; i <= kResourceTypeRobot; ++i) { // TODO: add support for audio36 and sync36 files + // Such patches were introduced in SCI2, and didn't exist in SCI0-SCI1.1 if (i == kResourceTypeAudio36 || i == kResourceTypeSync36) continue; |