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 adbd9ed118..2a73eac604 100644 --- a/engines/saga/actor.cpp +++ b/engines/saga/actor.cpp @@ -1671,6 +1671,8 @@ bool Actor::calcScreenPosition(CommonObjectData *commonObjectData) { commonObjectData->_screenScale = 256; } else if (_vm->getGameType() == GType_IHNM && (objectTypeId(commonObjectData->_id) & kGameObjectObject)) { commonObjectData->_screenScale = 256; + } else if (_vm->getGameType() == GType_IHNM && (commonObjectData->_flags & kNoScale)) { + commonObjectData->_screenScale = 256; } else if (middle >= endSlope) { commonObjectData->_screenScale = 1; } else { |