aboutsummaryrefslogtreecommitdiff
path: root/scumm/resource.cpp
diff options
context:
space:
mode:
authorMax Horn2005-03-06 13:23:29 +0000
committerMax Horn2005-03-06 13:23:29 +0000
commiteb728a748f9baea4c612fcbd0f6c2ed06f9b88ad (patch)
tree60be399c24d9359122fb4f367f1d95f76b876e9f /scumm/resource.cpp
parent7f5db33943bd951a32f1028cd0d14f952ab4f551 (diff)
downloadscummvm-rg350-eb728a748f9baea4c612fcbd0f6c2ed06f9b88ad.tar.gz
scummvm-rg350-eb728a748f9baea4c612fcbd0f6c2ed06f9b88ad.tar.bz2
scummvm-rg350-eb728a748f9baea4c612fcbd0f6c2ed06f9b88ad.zip
Name parameters properly, lest we'll all be confused...
svn-id: r17005
Diffstat (limited to 'scumm/resource.cpp')
-rw-r--r--scumm/resource.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/scumm/resource.cpp b/scumm/resource.cpp
index f2ced4a815..0950f74100 100644
--- a/scumm/resource.cpp
+++ b/scumm/resource.cpp
@@ -34,7 +34,7 @@
namespace Scumm {
-static uint16 newTag2Old(uint32 oldTag);
+static uint16 newTag2Old(uint32 newTag);
static const char *resTypeFromId(int id);
@@ -1434,8 +1434,8 @@ const byte *findResourceSmall(uint32 tag, const byte *searchin) {
return NULL;
}
-uint16 newTag2Old(uint32 oldTag) {
- switch (oldTag) {
+uint16 newTag2Old(uint32 newTag) {
+ switch (newTag) {
case (MKID('RMHD')):
return (0x4448); // HD
case (MKID('IM00')):