From baea10979c794550098c2458016d6762bc9e59c5 Mon Sep 17 00:00:00 2001 From: Eugene Sandulenko Date: Mon, 28 May 2007 16:36:18 +0000 Subject: Partial fix for walking speed in IHNM. svn-id: r26999 --- engines/saga/actor.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/engines/saga/actor.cpp b/engines/saga/actor.cpp index c26f06b33a..e92eb1307c 100644 --- a/engines/saga/actor.cpp +++ b/engines/saga/actor.cpp @@ -1406,7 +1406,11 @@ void Actor::handleActions(int msec, bool setup) { } } - speed = (ACTOR_LMULT * 2 * actor->_screenScale + 63) / 256; + if(_vm->getGameType() == GType_ITE) + speed = (ACTOR_LMULT * 2 * actor->_screenScale + 63) / 256; + else + speed = (72 * actor->_screenScale + 128) / 256; + if (speed < 1) { speed = 1; } -- cgit v1.2.3