diff --git a/projects/mtg/src/GuiHand.cpp b/projects/mtg/src/GuiHand.cpp index fab31cc48..c75a6836c 100644 --- a/projects/mtg/src/GuiHand.cpp +++ b/projects/mtg/src/GuiHand.cpp @@ -108,7 +108,7 @@ void GuiHandSelf::Repos() if (OptionHandDirection::HORIZONTAL == options[Options::HANDDIRECTION].number) { y = SCREEN_WIDTH - 30; - for (vector::iterator it = cards.begin(); it != cards.end(); ++it) + for (vector::reverse_iterator it = cards.rbegin(); it != cards.rend(); ++it) { (*it)->x = y; (*it)->y = SCREEN_HEIGHT - 30;