From 3deae0137e46356f7652cb8ab69a30ddf1e19d7e Mon Sep 17 00:00:00 2001 From: "omegablast2002@yahoo.com" Date: Sat, 2 Apr 2011 22:22:34 +0000 Subject: [PATCH] changing a int type for pspsdk to stop complaining. --- projects/mtg/include/AllAbilities.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/mtg/include/AllAbilities.h b/projects/mtg/include/AllAbilities.h index e676e20ad..5ce575aac 100644 --- a/projects/mtg/include/AllAbilities.h +++ b/projects/mtg/include/AllAbilities.h @@ -3359,7 +3359,7 @@ public: matches = td->match(source); if (matches > 0) { - if ((int) (abilities.size()) > matches) + if ((unsigned int) (abilities.size()) > matches) { removeAbilityFromGame(); }