fixed minor bug with Ai deck saving routine.

fixed psp compilation, changed use of char* to ostringstream for menu text.
This commit is contained in:
techdragon.nguyen@gmail.com
2010-10-27 17:26:32 +00:00
parent 7a13f562c7
commit 98627d96ba
2 changed files with 26 additions and 21 deletions
+1 -1
View File
@@ -778,7 +778,7 @@ int MTGDeck::save(string destFileName, bool useExpandedDescriptions, string &dec
continue;
}
MTGSetInfo *setInfo = setlist.getInfo( card->setId );
string setName = setInfo->getName();
string setName = setInfo->id;
string cardName = card->data->getName();
file<< cardName << "\t " << "(" << setName << ") *" << nbCards << endl;
setInfo = NULL;