From f504051bfddf054b297b3f15d57fa74a00d398f2 Mon Sep 17 00:00:00 2001 From: "omegablast2002@yahoo.com" Date: Sat, 5 Feb 2011 13:05:51 +0000 Subject: [PATCH] changed the vertstack count of enchantments and artifacts from 3 per stack, to 5 per stack, i wanted to go 6 but i felt it cropped too much off the 6ths card... reason for this change is that it becames WAY to hard to player decks which contained mostly artifacts to share the feild, give 9 cards half the screen to display just didnt seem like a good choice compared to the creatures horizontal stack which can display almost 200 cards in the same screen width. --- projects/mtg/src/GuiPlay.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/mtg/src/GuiPlay.cpp b/projects/mtg/src/GuiPlay.cpp index 191a5f6ee..ee56b650d 100644 --- a/projects/mtg/src/GuiPlay.cpp +++ b/projects/mtg/src/GuiPlay.cpp @@ -68,7 +68,7 @@ void GuiPlay::HorzStack::Enstack(CardView* card) void GuiPlay::VertStack::Enstack(CardView* card) { - if (0 == count % 3) + if (0 == count % 5) { x += CARD_WIDTH; y = 0;