aboutsummaryrefslogtreecommitdiff
path: root/engines/chewy/scene.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/chewy/scene.cpp')
-rw-r--r--engines/chewy/scene.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/chewy/scene.cpp b/engines/chewy/scene.cpp
index c6c12fc3ff..0f12219078 100644
--- a/engines/chewy/scene.cpp
+++ b/engines/chewy/scene.cpp
@@ -177,7 +177,7 @@ void Scene::loadSceneInfo() {
for (int i = 0; i < MAX_HOTSPOTS; i++) {
_sceneInfo->hotspotDescRes[i] = indexFile.readUint16LE();
- if (_sceneInfo->hotspotDescRes[i] < kATSTextMax) {
+ if (_sceneInfo->hotspotDescRes[i] < 12) {
// TODO: Hotspot description IDs are off... investigate why
_sceneInfo->hotspotDesc[i] = text->getText(_curScene + kADSTextMax, _sceneInfo->hotspotDescRes[i])->text;
} else {