-fix issue 192 (graphical issue when tapped card changes controller)
This commit is contained in:
wagic.the.homebrew@gmail.com
2010-01-15 15:09:41 +00:00
parent fea7985212
commit 187e108cdb
3 changed files with 4 additions and 8 deletions

View File

@@ -231,7 +231,8 @@ int GuiPlay::receiveEventPlus(WEvent * e)
else
card = NEW CardView(CardSelector::playZone, event->card, 0, 0);
cards.push_back(card);
card->t = 0; card->alpha = 255;
card->t = event->card->isTapped() ? M_PI / 2 : 0;
card->alpha = 255;
cs->Add(card);
Replace();
return 1;