From 6d50ddcda5e0fde0e888d12d605928cc16bb9daa Mon Sep 17 00:00:00 2001 From: "techdragon.nguyen@gmail.com" Date: Mon, 31 Jan 2011 16:52:01 +0000 Subject: [PATCH] * adjusted mana icons to be 60% of the original size. The rest of the game apparently resizes the mana icons to 40% but that makes it look a little blurred when viewed that way on the deck selection screen. * adjusted debug message condition for the mana display --- projects/mtg/src/DeckMenu.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/projects/mtg/src/DeckMenu.cpp b/projects/mtg/src/DeckMenu.cpp index 3bb8339da..c1f8a1fa9 100644 --- a/projects/mtg/src/DeckMenu.cpp +++ b/projects/mtg/src/DeckMenu.cpp @@ -264,12 +264,12 @@ void DeckMenu::Render() { if ( (deckManaColors.at(colorIdx) == '1') != 0) { - renderer->RenderQuad(manaIcons[colorIdx], manaIconX, manaIconY); - manaIconX += 30; + renderer->RenderQuad(manaIcons[colorIdx], manaIconX, manaIconY, 0, 0.6f, 0.6f); + manaIconX += 20; } } } - else + else if (deckManaColors.compare("") != 0 ) DebugTrace("Error with color index string for "<< mSelectedDeck->getName() << ". [" << deckManaColors << "]."); }