Fixed warning on Windows introduced in latest commit.

This commit is contained in:
Xawotihs
2011-10-30 18:33:23 +00:00
parent 2f4dd4cd2a
commit 1ce9c75b9c

View File

@@ -247,7 +247,7 @@ bool Player::parseLine(const string& s)
}
else if (areaS.compare("premade") == 0)
{
premade = atoi(s.substr(limiter + 1).c_str());
premade = (atoi(s.substr(limiter + 1).c_str())==1);
return true;
}
else if (areaS.compare("deckfile") == 0)