mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-26 09:35:28 +00:00
Fixed a syntax error! Oops!
This commit is contained in:
parent
09023bb853
commit
588e6e9995
@ -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…
x
Reference in New Issue
Block a user