aboutsummaryrefslogtreecommitdiff
path: root/scumm
diff options
context:
space:
mode:
authorJamieson Christian2002-12-01 17:59:27 +0000
committerJamieson Christian2002-12-01 17:59:27 +0000
commite89a8aa9b42a95fe7a2c3b7be2c9f4c70fbf7ebd (patch)
treeb9294275635993d685b31f0369623effe35d81b7 /scumm
parent093dbbe5b0c4efa0c48a1185f8fd7d6bcce6e0a2 (diff)
downloadscummvm-rg350-e89a8aa9b42a95fe7a2c3b7be2c9f4c70fbf7ebd.tar.gz
scummvm-rg350-e89a8aa9b42a95fe7a2c3b7be2c9f4c70fbf7ebd.tar.bz2
scummvm-rg350-e89a8aa9b42a95fe7a2c3b7be2c9f4c70fbf7ebd.zip
Fixed a regression with the 1.35 revision
svn-id: r5789
Diffstat (limited to 'scumm')
-rw-r--r--scumm/script_v1.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/script_v1.cpp b/scumm/script_v1.cpp
index bd67df81d7..169bde828d 100644
--- a/scumm/script_v1.cpp
+++ b/scumm/script_v1.cpp
@@ -929,7 +929,7 @@ void Scumm::o5_getActorFacing()
return;
}
- setResult(a->facing);
+ setResult(newDirToOldDir (a->facing));
}
void Scumm::o5_getActorMoving()