* 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
This commit is contained in:
techdragon.nguyen@gmail.com
2011-01-31 16:52:01 +00:00
parent a2939cc93f
commit 6d50ddcda5

View File

@@ -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 << "].");
}