aboutsummaryrefslogtreecommitdiff
path: root/scumm/script_v72he.cpp
diff options
context:
space:
mode:
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() {