forked from mirror/openmw-tes3mp
Fix left/right movement
This commit is contained in:
parent
d50832081c
commit
3251796ba0
1 changed files with 2 additions and 2 deletions
|
@ -271,12 +271,12 @@ namespace MWInput
|
|||
if (actionIsActive(A_MoveLeft))
|
||||
{
|
||||
mPlayer.setAutoMove (false);
|
||||
mPlayer.setLeftRight (1);
|
||||
mPlayer.setLeftRight (-1);
|
||||
}
|
||||
else if (actionIsActive(A_MoveRight))
|
||||
{
|
||||
mPlayer.setAutoMove (false);
|
||||
mPlayer.setLeftRight (-1);
|
||||
mPlayer.setLeftRight (1);
|
||||
}
|
||||
else
|
||||
mPlayer.setLeftRight (0);
|
||||
|
|
Loading…
Reference in a new issue