Fixed stupid problems introduced in previous commit. Bloody GCC with Werror is simply not enough :(

This commit is contained in:
Xawotihs
2011-10-27 18:58:54 +00:00
parent c3dc51aed1
commit 5f9e8e2588
3 changed files with 5 additions and 4 deletions

View File

@@ -310,7 +310,8 @@ void StoryDuel::init()
sprintf(deckFile, "%s/deck.txt", folder);
sprintf(deckFileSmall, "campaign_%s", mParent->folder.c_str());
players.push_back(NEW HumanPlayer(0, deckFile, deckFileSmall));
players.push_back(NEW HumanPlayer(0, deckFile, deckFileSmall, true));
sprintf(deckFile, "%s/opponent_deck.txt", folder);
sprintf(deckFileSmall, "campaign_ennemy_%s_%s", mParent->folder.c_str(), pageId.c_str());