mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-09 04:16:34 +00:00
Partial fix for walking speed in IHNM.
svn-id: r26999
This commit is contained in:
parent
97afe587d2
commit
baea10979c
@ -1406,7 +1406,11 @@ void Actor::handleActions(int msec, bool setup) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if(_vm->getGameType() == GType_ITE)
|
||||||
speed = (ACTOR_LMULT * 2 * actor->_screenScale + 63) / 256;
|
speed = (ACTOR_LMULT * 2 * actor->_screenScale + 63) / 256;
|
||||||
|
else
|
||||||
|
speed = (72 * actor->_screenScale + 128) / 256;
|
||||||
|
|
||||||
if (speed < 1) {
|
if (speed < 1) {
|
||||||
speed = 1;
|
speed = 1;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user