diff options
Diffstat (limited to 'scumm/resource.cpp')
-rw-r--r-- | scumm/resource.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/scumm/resource.cpp b/scumm/resource.cpp index 6e256a62dd..4ddc571c7a 100644 --- a/scumm/resource.cpp +++ b/scumm/resource.cpp @@ -753,6 +753,10 @@ byte *ScummEngine::getResourceAddress(int type, int idx) { byte *ptr; CHECK_HEAP + + if (_heversion >= 80 && type == rtString) + idx &= ~0x33539000; + if (!res.validateResource("getResourceAddress", type, idx)) return NULL; |