summaryrefslogtreecommitdiff
path: root/src/being/crazymoves.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2017-12-23 19:37:38 +0300
committerAndrei Karas <akaras@inbox.ru>2017-12-23 19:37:38 +0300
commit5fc7ef5ed9394e613341cd4f98d908bb8483b2fd (patch)
tree46023a9726d2aee0f65d01f1d93bea78799a1036 /src/being/crazymoves.cpp
parent4aaa299b111d07d7e4425e60a888e8496b9da5c1 (diff)
downloadplus-5fc7ef5ed9394e613341cd4f98d908bb8483b2fd.tar.gz
plus-5fc7ef5ed9394e613341cd4f98d908bb8483b2fd.tar.bz2
plus-5fc7ef5ed9394e613341cd4f98d908bb8483b2fd.tar.xz
plus-5fc7ef5ed9394e613341cd4f98d908bb8483b2fd.zip
Remove default parameters from outfitswindow.
Diffstat (limited to 'src/being/crazymoves.cpp')
-rw-r--r--src/being/crazymoves.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/being/crazymoves.cpp b/src/being/crazymoves.cpp
index e2d960aa4..0fe46791d 100644
--- a/src/being/crazymoves.cpp
+++ b/src/being/crazymoves.cpp
@@ -725,13 +725,13 @@ void CrazyMoves::crazyMoveAo() const
if (mMoveProgram[settings.crazyMoveState] == 'n')
{
settings.crazyMoveState ++;
- outfitWindow->wearNextOutfit();
+ outfitWindow->wearNextOutfit(false);
}
// wear previous outfit
else if (mMoveProgram[settings.crazyMoveState] == 'p')
{
settings.crazyMoveState ++;
- outfitWindow->wearPreviousOutfit();
+ outfitWindow->wearPreviousOutfit(false);
}
}
}