aboutsummaryrefslogtreecommitdiff
path: root/script_v2.cpp
diff options
context:
space:
mode:
authorMax Horn2002-05-10 13:45:32 +0000
committerMax Horn2002-05-10 13:45:32 +0000
commit8dbcdc661f574fe85412f4081574a1ed075410fc (patch)
treee4c384fa155c032b95883d8e1990adc086b6e472 /script_v2.cpp
parentdc0fef7cc961a7811a18f064905bf4650b0cf5bf (diff)
downloadscummvm-rg350-8dbcdc661f574fe85412f4081574a1ed075410fc.tar.gz
scummvm-rg350-8dbcdc661f574fe85412f4081574a1ed075410fc.tar.bz2
scummvm-rg350-8dbcdc661f574fe85412f4081574a1ed075410fc.zip
renamed fixActorDirection to setActorDirection; fixed a bug causing wrong actor directions
svn-id: r4260
Diffstat (limited to 'script_v2.cpp')
-rw-r--r--script_v2.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/script_v2.cpp b/script_v2.cpp
index 95aa114360..863aa99320 100644
--- a/script_v2.cpp
+++ b/script_v2.cpp
@@ -2040,7 +2040,7 @@ void Scumm::o6_actorSet()
break;
case 230: /* set direction */
a->moving &= ~4;
- fixActorDirection(a, pop());
+ setActorDirection(a, pop());
break;
case 231: /* turn to direction */
turnToDirection(a, pop());