diff options
author | Max Horn | 2005-03-06 13:23:29 +0000 |
---|---|---|
committer | Max Horn | 2005-03-06 13:23:29 +0000 |
commit | eb728a748f9baea4c612fcbd0f6c2ed06f9b88ad (patch) | |
tree | 60be399c24d9359122fb4f367f1d95f76b876e9f /scumm | |
parent | 7f5db33943bd951a32f1028cd0d14f952ab4f551 (diff) | |
download | scummvm-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')
-rw-r--r-- | scumm/resource.cpp | 6 |
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')): |