psp compilation fix

This commit is contained in:
omegablast2002@yahoo.com
2013-03-15 21:42:24 +00:00
parent 1818a8be82
commit 3cb0a6c091

View File

@@ -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--)
{
vector<string>asTc;
asTc = parseBetween(hints[i]->partOfCombo[dPart],"hold(",")");