diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-12-23 19:37:38 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-12-23 19:37:38 +0300 |
commit | 5fc7ef5ed9394e613341cd4f98d908bb8483b2fd (patch) | |
tree | 46023a9726d2aee0f65d01f1d93bea78799a1036 /src/progs/manaplus/actions/move.cpp | |
parent | 4aaa299b111d07d7e4425e60a888e8496b9da5c1 (diff) | |
download | plus-5fc7ef5ed9394e613341cd4f98d908bb8483b2fd.tar.gz plus-5fc7ef5ed9394e613341cd4f98d908bb8483b2fd.tar.bz2 plus-5fc7ef5ed9394e613341cd4f98d908bb8483b2fd.tar.xz plus-5fc7ef5ed9394e613341cd4f98d908bb8483b2fd.zip |
Remove default parameters from outfitswindow.
Diffstat (limited to 'src/progs/manaplus/actions/move.cpp')
-rw-r--r-- | src/progs/manaplus/actions/move.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/progs/manaplus/actions/move.cpp b/src/progs/manaplus/actions/move.cpp index ea4088f61..d7c73eb1f 100644 --- a/src/progs/manaplus/actions/move.cpp +++ b/src/progs/manaplus/actions/move.cpp @@ -104,7 +104,7 @@ impHandler(moveLeft) if (outfitWindow != nullptr && inputManager.isActionActive(InputAction::WEAR_OUTFIT)) { - outfitWindow->wearPreviousOutfit(); + outfitWindow->wearPreviousOutfit(false); if (Game::instance() != nullptr) Game::instance()->setValidSpeed(); return true; @@ -125,7 +125,7 @@ impHandler(moveRight) if (outfitWindow != nullptr && inputManager.isActionActive(InputAction::WEAR_OUTFIT)) { - outfitWindow->wearNextOutfit(); + outfitWindow->wearNextOutfit(false); if (Game::instance() != nullptr) Game::instance()->setValidSpeed(); return true; |