From f2c405566f491d30694289a70c08853059680c3a Mon Sep 17 00:00:00 2001 From: "wagic.the.homebrew@gmail.com" Date: Tue, 23 Mar 2010 12:32:25 +0000 Subject: [PATCH] Erwan - fix psp compilation, thanks to the people who reported the issue --- 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 af4dd1815..488e40526 100644 --- a/projects/mtg/include/AllAbilities.h +++ b/projects/mtg/include/AllAbilities.h @@ -202,10 +202,10 @@ public: //counters class AACounter: public ActivatedAbility{ public: - string name; int nb; int power; int toughness; + string name; AACounter(int id, MTGCardInstance * source, MTGCardInstance * target, const char * _name, int power, int toughness, int nb, ManaCost * cost = NULL, int doTap = 0) : ActivatedAbility(id, source, cost, 0, doTap), nb(nb), power(power), toughness(toughness), name(_name) { this->target = target; }