Should fix cross-compilation issue on PSP.

This commit is contained in:
xawotihs
2015-08-29 19:23:07 +02:00
parent a25b010429
commit 963ab2840b
3 changed files with 11 additions and 15 deletions
+3 -3
View File
@@ -84,10 +84,10 @@ public:
{
};
int Act();
ostream& logSimpleAct(ostream& out, MTGCardInstance* click);
ostream& logMultiAct(ostream& out, vector<Targetable*>& actionTargets);
ostream& logSimpleAct(ostream& out, MTGCardInstance* click) const;
ostream& logMultiAct(ostream& out, const vector<Targetable *> &actionTargets) const;
friend ostream& operator<<(ostream& out, AIAction& a);
friend ostream& operator<<(ostream& out, const AIAction& a);
};