aboutsummaryrefslogtreecommitdiff
path: root/scumm/script_v72he.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_v72he.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_v72he.cpp')
-rw-r--r--scumm/script_v72he.cpp15
1 files changed, 2 insertions, 13 deletions
diff --git a/scumm/script_v72he.cpp b/scumm/script_v72he.cpp
index b20716e850..a60ed8abe5 100644
--- a/scumm/script_v72he.cpp
+++ b/scumm/script_v72he.cpp
@@ -2156,19 +2156,8 @@ void ScummEngine_v72he::o72_writeINI() {
}
void ScummEngine_v72he::o72_getResourceSize() {
- int resid, size;
-
- resid = pop();
- if (resid > _numSounds) {
- int offs;
- _sound->getHEMusicDetails(resid, offs, size);
- push(size);
- } else {
- const byte *ptr = getResourceAddress(rtSound, resid);
- assert(ptr);
- size = READ_BE_UINT32(ptr + 4) - 40;
- push(size);
- }
+ int resid = pop();
+ push(getSoundResourceSize(resid));
}
void ScummEngine_v72he::o72_setFilePath() {