Squelch some MSVC warnings

This commit is contained in:
2015-08-19 14:00:46 -04:00
parent b63e0a24f4
commit 2bf1f21c4d
4 changed files with 18 additions and 9 deletions

View File

@@ -821,7 +821,8 @@ void cParty::readFrom(std::istream& file){
} else if(cur == "TOWNSAVE") {
int i;
std::string str;
bin >> i >> creature_save[i].which_town >> str;
bin >> i;
bin >> creature_save[i].which_town >> str;
creature_save[i].hostile = str == "HOSTILE";
} else if(cur == "TOWNVISIBLE") {
int i;