diff options
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; |