diff options
-rw-r--r-- | engines/saga/actor.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/engines/saga/actor.cpp b/engines/saga/actor.cpp index 8527f1801b..adbd9ed118 100644 --- a/engines/saga/actor.cpp +++ b/engines/saga/actor.cpp @@ -1669,6 +1669,8 @@ bool Actor::calcScreenPosition(CommonObjectData *commonObjectData) { if (middle <= beginSlope) { commonObjectData->_screenScale = 256; + } else if (_vm->getGameType() == GType_IHNM && (objectTypeId(commonObjectData->_id) & kGameObjectObject)) { + commonObjectData->_screenScale = 256; } else if (middle >= endSlope) { commonObjectData->_screenScale = 1; } else { |