aboutsummaryrefslogtreecommitdiff
path: root/engines/scumm/resource_v2.cpp
diff options
context:
space:
mode:
authorMax Horn2007-02-24 19:29:40 +0000
committerMax Horn2007-02-24 19:29:40 +0000
commit8fa6a1ffd54c913292bb01786acc2bbfbd8c149d (patch)
treef073a3512647bd431bbd6ce609c8af4466fd5621 /engines/scumm/resource_v2.cpp
parent04a18dd7c4d381f9d7fdb92793b0b0608c462c6c (diff)
downloadscummvm-rg350-8fa6a1ffd54c913292bb01786acc2bbfbd8c149d.tar.gz
scummvm-rg350-8fa6a1ffd54c913292bb01786acc2bbfbd8c149d.tar.bz2
scummvm-rg350-8fa6a1ffd54c913292bb01786acc2bbfbd8c149d.zip
Removed the (useless, thanks to resTypeFromId) 'name' parameter from readResTypeList
svn-id: r25828
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 a503e1291d..e0cfdffbe7 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, "room");
- readResTypeList(rtCostume, "costume");
- readResTypeList(rtScript, "script");
- readResTypeList(rtSound, "sound");
+ readResTypeList(rtRoom);
+ readResTypeList(rtCostume);
+ readResTypeList(rtScript);
+ readResTypeList(rtSound);
}
void ScummEngine_v2::readGlobalObjects() {