aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTravis Howell2004-09-11 03:10:31 +0000
committerTravis Howell2004-09-11 03:10:31 +0000
commit8144bc100b6377c1da6ebd777afbd33f7353400f (patch)
treeb253dff85972c101533af0aef53a2d3937bf4434
parent618dcf6217fe30aa6a53527e6a474bf33bf9ea42 (diff)
downloadscummvm-rg350-8144bc100b6377c1da6ebd777afbd33f7353400f.tar.gz
scummvm-rg350-8144bc100b6377c1da6ebd777afbd33f7353400f.tar.bz2
scummvm-rg350-8144bc100b6377c1da6ebd777afbd33f7353400f.zip
Update this one too.
svn-id: r15004
-rw-r--r--scumm/script_v80he.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/script_v80he.cpp b/scumm/script_v80he.cpp
index 99de3ed62f..7241bab8a0 100644
--- a/scumm/script_v80he.cpp
+++ b/scumm/script_v80he.cpp
@@ -549,7 +549,7 @@ void ScummEngine_v80he::o80_setState() {
int state = pop();
int obj = pop();
- state = state & 0x7F00;
+ state &= 0x7FFF;
putState(obj, state);
removeObjectFromDrawQue(obj);
}