diff options
author | Nicola Mettifogo | 2008-01-29 09:58:21 +0000 |
---|---|---|
committer | Nicola Mettifogo | 2008-01-29 09:58:21 +0000 |
commit | d6f45b451b88215897514a44cdb6ab0ba9cfa273 (patch) | |
tree | 76635cf6026adf5f7d1f7f180a9f70c7407f0c49 /engines/parallaction | |
parent | 0e02a9398ab9208c89b70ff93c06dd3f2077470e (diff) | |
download | scummvm-rg350-d6f45b451b88215897514a44cdb6ab0ba9cfa273.tar.gz scummvm-rg350-d6f45b451b88215897514a44cdb6ab0ba9cfa273.tar.bz2 scummvm-rg350-d6f45b451b88215897514a44cdb6ab0ba9cfa273.zip |
Fixed regression when displaying animation: the issue could only be noticed when characters appeared out of their sketches in the intro.
svn-id: r30696
Diffstat (limited to 'engines/parallaction')
-rw-r--r-- | engines/parallaction/exec_ns.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/parallaction/exec_ns.cpp b/engines/parallaction/exec_ns.cpp index d9edf5c2d3..b2bc80e84c 100644 --- a/engines/parallaction/exec_ns.cpp +++ b/engines/parallaction/exec_ns.cpp @@ -347,12 +347,12 @@ void Parallaction_ns::drawAnimations() { if (((v18->_flags & kFlagsActive) == 0) && (v18->_flags & kFlagsRemove)) { v18->_flags &= ~kFlagsRemove; v18->_oldPos.x = -1000; - _gfx->showGfxObj(obj, false); } if ((v18->_flags & kFlagsActive) && (v18->_flags & kFlagsRemove)) { v18->_flags &= ~kFlagsActive; v18->_flags |= kFlagsRemove; + _gfx->showGfxObj(obj, false); } } |