aboutsummaryrefslogtreecommitdiff
path: root/scumm/akos.cpp
diff options
context:
space:
mode:
authorMax Horn2004-07-31 23:20:37 +0000
committerMax Horn2004-07-31 23:20:37 +0000
commitf0d6fd8c5ac3bf144eef93f146e9c056321e11db (patch)
tree8f4950325c8f81282724aad3365d9b9c04a5a447 /scumm/akos.cpp
parentc5836541fe4632792f6c7dbab8f01bf0459c03c3 (diff)
downloadscummvm-rg350-f0d6fd8c5ac3bf144eef93f146e9c056321e11db.tar.gz
scummvm-rg350-f0d6fd8c5ac3bf144eef93f146e9c056321e11db.tar.bz2
scummvm-rg350-f0d6fd8c5ac3bf144eef93f146e9c056321e11db.zip
isGlobInMemory == isResourceLoaded
svn-id: r14396
Diffstat (limited to 'scumm/akos.cpp')
-rw-r--r--scumm/akos.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/akos.cpp b/scumm/akos.cpp
index 31cac1729e..5cf8344375 100644
--- a/scumm/akos.cpp
+++ b/scumm/akos.cpp
@@ -588,7 +588,7 @@ byte AkosRenderer::codec1(int xmoveCur, int ymoveCur) {
/* implement custom scale table */
v1.scaletable = (_vm->_features & GF_HUMONGOUS) ? oldScaleTable : defaultScaleTable;
- if (_vm->VAR_CUSTOMSCALETABLE != 0xFF && _vm->isGlobInMemory(rtString, _vm->VAR(_vm->VAR_CUSTOMSCALETABLE))) {
+ if (_vm->VAR_CUSTOMSCALETABLE != 0xFF && _vm->isResourceLoaded(rtString, _vm->VAR(_vm->VAR_CUSTOMSCALETABLE))) {
v1.scaletable = _vm->getStringAddressVar(_vm->VAR_CUSTOMSCALETABLE);
}