mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-25 06:35:30 +00:00
Fixed a syntax error! Oops!
This commit is contained in:
parent
09023bb853
commit
588e6e9995
@ -143,17 +143,17 @@ namespace MWInput
|
||||
|
||||
void toggleAutoMove()
|
||||
{
|
||||
if (player.getmAutoMove() == false)
|
||||
if (player.getAutoMove() == false)
|
||||
{
|
||||
player.setmAutoMove(true);
|
||||
player.setAutoMove(true);
|
||||
} else {
|
||||
player.setmAutoMove(false);
|
||||
player.setAutoMove(false);
|
||||
}
|
||||
}
|
||||
|
||||
void toggleWalking()
|
||||
{
|
||||
player.setmisWalking(true);
|
||||
player.setisWalking(true);
|
||||
}
|
||||
|
||||
// Exit program now button (which is disabled in GUI mode)
|
||||
|
Loading…
x
Reference in New Issue
Block a user