aboutsummaryrefslogtreecommitdiff
path: root/scumm/script_v100he.cpp
diff options
context:
space:
mode:
authorTravis Howell2005-04-18 11:44:01 +0000
committerTravis Howell2005-04-18 11:44:01 +0000
commitd391c2f837199cfecb0c26c518bbf804d3da3d3c (patch)
treeebf6c68e575541c652eae9cb0e9e1c764671e064 /scumm/script_v100he.cpp
parent8d01148b797f66af457434284b3a41bd18b86098 (diff)
downloadscummvm-rg350-d391c2f837199cfecb0c26c518bbf804d3da3d3c.tar.gz
scummvm-rg350-d391c2f837199cfecb0c26c518bbf804d3da3d3c.tar.bz2
scummvm-rg350-d391c2f837199cfecb0c26c518bbf804d3da3d3c.zip
Adjust again, for sound header differences.
svn-id: r17668
Diffstat (limited to 'scumm/script_v100he.cpp')
-rw-r--r--scumm/script_v100he.cpp11
1 files changed, 1 insertions, 10 deletions
diff --git a/scumm/script_v100he.cpp b/scumm/script_v100he.cpp
index 1494cdc40f..c0939cc947 100644
--- a/scumm/script_v100he.cpp
+++ b/scumm/script_v100he.cpp
@@ -2211,16 +2211,7 @@ void ScummEngine_v100he::o100_getResourceSize() {
type = rtScript;
break;
case 72:
- if (resid > _numSounds) {
- int offs;
- _sound->getHEMusicDetails(resid, offs, size);
- push(size);
- } else {
- ptr = getResourceAddress(rtSound, resid);
- assert(ptr);
- size = READ_BE_UINT32(ptr + 4) - 40;
- push(size);
- }
+ push (getSoundResourceSize(resid));
return;
default:
error("o100_getResourceSize: default type %d", subOp);