From 5ece26d49a646474e2a8ba737ed4034cfd9bdc5c Mon Sep 17 00:00:00 2001 From: "omegablast2002@yahoo.com" Date: Wed, 14 Sep 2011 12:07:33 +0000 Subject: [PATCH] psp comp fix... --- projects/mtg/src/GameObserver.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/projects/mtg/src/GameObserver.cpp b/projects/mtg/src/GameObserver.cpp index 0405e58eb..d4fe3722c 100644 --- a/projects/mtg/src/GameObserver.cpp +++ b/projects/mtg/src/GameObserver.cpp @@ -468,10 +468,10 @@ void GameObserver::gameStateBasedEffects() MTGCardInstance * check = NULL; MTGCardInstance * matched = NULL; sort(card->childrenCards.begin(),card->childrenCards.end()); - for(unsigned int wC = 0; wC < int(card->childrenCards.size());wC++) + for(size_t wC = 0; wC < card->childrenCards.size();wC++) { check = card->childrenCards[wC]; - for(unsigned int wCC = 0; wCC < int(card->childrenCards.size());wCC++) + for(size_t wCC = 0; wCC < card->childrenCards.size();wCC++) { if(check->getName() == card->childrenCards[wCC]->getName() && check != card->childrenCards[wCC]) {