aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSylvain Dupont2010-12-26 14:32:38 +0000
committerSylvain Dupont2010-12-26 14:32:38 +0000
commit63e58baae11f25d3a57527afecca4a9d970e1892 (patch)
treea5ddb1c2dcd1a1727436ecf1bf90d036d443cdaf
parent6cd890aaac265654b3cad9af9ed3b6ca9de17cdb (diff)
downloadscummvm-rg350-63e58baae11f25d3a57527afecca4a9d970e1892.tar.gz
scummvm-rg350-63e58baae11f25d3a57527afecca4a9d970e1892.tar.bz2
scummvm-rg350-63e58baae11f25d3a57527afecca4a9d970e1892.zip
TOON: Fix problem when exiting the king cave
svn-id: r55042
-rw-r--r--engines/toon/script_func.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/toon/script_func.cpp b/engines/toon/script_func.cpp
index e2c9540fb2..c2d60eb355 100644
--- a/engines/toon/script_func.cpp
+++ b/engines/toon/script_func.cpp
@@ -257,7 +257,7 @@ int32 ScriptFunc::sys_Cmd_Draw_Actor_Standing(EMCState *state) {
int32 arg2 = stackPos(1);
if (arg2 > -1)
- _vm->getDrew()->setFacing(arg2);
+ _vm->getDrew()->forceFacing(arg2);
if (arg1 < 0) {
_vm->getDrew()->setVisible(false);