aboutsummaryrefslogtreecommitdiff
path: root/engines/access/animation.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/access/animation.cpp')
-rw-r--r--engines/access/animation.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/access/animation.cpp b/engines/access/animation.cpp
index 184b015371..e59874fe7a 100644
--- a/engines/access/animation.cpp
+++ b/engines/access/animation.cpp
@@ -222,9 +222,9 @@ void Animation::setFrame1(AnimationFrame *frame) {
ImageEntry ie;
// Set the flags
- ie._flags = part->_flags & 0xF7;
+ ie._flags = part->_flags & ~IMGFLAG_UNSCALED;
if (_vm->_animation->_frameScale == -1)
- ie._flags |= 8;
+ ie._flags |= IMGFLAG_UNSCALED;
// Set the other fields
ie._spritesPtr = _vm->_objectsTable[part->_spritesIndex];