forked from mirror/openmw-tes3mp
Fixed a syntax error! Oops!
This commit is contained in:
parent
09023bb853
commit
588e6e9995
1 changed files with 4 additions and 4 deletions
|
@ -143,17 +143,17 @@ namespace MWInput
|
||||||
|
|
||||||
void toggleAutoMove()
|
void toggleAutoMove()
|
||||||
{
|
{
|
||||||
if (player.getmAutoMove() == false)
|
if (player.getAutoMove() == false)
|
||||||
{
|
{
|
||||||
player.setmAutoMove(true);
|
player.setAutoMove(true);
|
||||||
} else {
|
} else {
|
||||||
player.setmAutoMove(false);
|
player.setAutoMove(false);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void toggleWalking()
|
void toggleWalking()
|
||||||
{
|
{
|
||||||
player.setmisWalking(true);
|
player.setisWalking(true);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Exit program now button (which is disabled in GUI mode)
|
// Exit program now button (which is disabled in GUI mode)
|
||||||
|
|
Loading…
Reference in a new issue