aboutsummaryrefslogtreecommitdiff
path: root/engines/scumm/resource_v2.cpp
diff options
context:
space:
mode:
authorMax Horn2006-02-25 02:22:17 +0000
committerMax Horn2006-02-25 02:22:17 +0000
commit87fd6957acc6dd7c4b597b07685691adb2c95870 (patch)
tree25b79ca2e64916e76a3815318c024711131343d5 /engines/scumm/resource_v2.cpp
parent6914121f6128092985a99a3d3af485f3bed265c3 (diff)
downloadscummvm-rg350-87fd6957acc6dd7c4b597b07685691adb2c95870.tar.gz
scummvm-rg350-87fd6957acc6dd7c4b597b07685691adb2c95870.tar.bz2
scummvm-rg350-87fd6957acc6dd7c4b597b07685691adb2c95870.zip
Got rid of the 'tag' parameter for readResTypeList()
svn-id: r20864
Diffstat (limited to 'engines/scumm/resource_v2.cpp')
-rw-r--r--engines/scumm/resource_v2.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/scumm/resource_v2.cpp b/engines/scumm/resource_v2.cpp
index 7d951d2408..01abe07944 100644
--- a/engines/scumm/resource_v2.cpp
+++ b/engines/scumm/resource_v2.cpp
@@ -144,10 +144,10 @@ void ScummEngine_v2::readEnhancedIndexFile() {
_fileHandle->readUint16LE(); /* version magic number */
readGlobalObjects();
- readResTypeList(rtRoom, MKID('ROOM'), "room");
- readResTypeList(rtCostume, MKID('COST'), "costume");
- readResTypeList(rtScript, MKID('SCRP'), "script");
- readResTypeList(rtSound, MKID('SOUN'), "sound");
+ readResTypeList(rtRoom, "room");
+ readResTypeList(rtCostume, "costume");
+ readResTypeList(rtScript, "script");
+ readResTypeList(rtSound, "sound");
}
void ScummEngine_v2::readGlobalObjects() {