diff --git a/projects/mtg/src/GuiHand.cpp b/projects/mtg/src/GuiHand.cpp index 950585dd9..deae8f3dc 100644 --- a/projects/mtg/src/GuiHand.cpp +++ b/projects/mtg/src/GuiHand.cpp @@ -86,7 +86,10 @@ void GuiHandOpponent::Render() (*it)->y = 2; (*it)->zoom = 0.3f; (*it)->Render(quad.get()); - x += 18; + if(cards.size() > 12) + x += 240/cards.size(); + else + x += 18; } }