From 3cb0a6c091ef6bb805f3da23974ead4c2f2ccd2e Mon Sep 17 00:00:00 2001 From: "omegablast2002@yahoo.com" Date: Fri, 15 Mar 2013 21:42:24 +0000 Subject: [PATCH] psp compilation fix --- projects/mtg/src/AIHints.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/mtg/src/AIHints.cpp b/projects/mtg/src/AIHints.cpp index d1f4aa25e..6b61cc9a4 100644 --- a/projects/mtg/src/AIHints.cpp +++ b/projects/mtg/src/AIHints.cpp @@ -118,7 +118,7 @@ bool AIHints::HintSaysItsForCombo(GameObserver* observer,MTGCardInstance * card) //here we disect the different parts of a given combo part = hints[i]->combos[cPart]; hints[i]->partOfCombo = split(part,'^'); - for(size_t dPart = hints[i]->partOfCombo.size()-1;dPart >= 0;dPart--) + for(int dPart = int(hints[i]->partOfCombo.size()-1);dPart >= 0;dPart--) { vectorasTc; asTc = parseBetween(hints[i]->partOfCombo[dPart],"hold(",")");