- cleanup some msvc++ compiler warnings

This commit is contained in:
SoftCoder
2013-12-22 23:15:31 -08:00
parent 3a24531ba7
commit bcaad53fbe
2 changed files with 11 additions and 11 deletions

View File

@@ -333,8 +333,8 @@ void ParticleSystemType::loadGame(const XmlNode *rootNode) {
energyMax = particleSystemTypeNode->getAttribute("energyMax")->getIntValue();
energyVar = particleSystemTypeNode->getAttribute("energyVar")->getIntValue();
mode = particleSystemTypeNode->getAttribute("mode")->getValue();
teamcolorNoEnergy = particleSystemTypeNode->getAttribute("teamcolorNoEnergy")->getIntValue();
teamcolorEnergy = particleSystemTypeNode->getAttribute("teamcolorEnergy")->getIntValue();
teamcolorNoEnergy = (particleSystemTypeNode->getAttribute("teamcolorNoEnergy")->getIntValue() != 0);
teamcolorEnergy = (particleSystemTypeNode->getAttribute("teamcolorEnergy")->getIntValue() != 0);
alternations = particleSystemTypeNode->getAttribute("alternations")->getIntValue();
particleSystemStartDelay = particleSystemTypeNode->getAttribute("particleSystemStartDelay")->getIntValue();
@@ -349,10 +349,10 @@ void ParticleSystemType::loadGame(const XmlNode *rootNode) {
}
}
minmaxEnabled = particleSystemTypeNode->getAttribute("minmaxEnabled")->getIntValue();
minmaxEnabled = (particleSystemTypeNode->getAttribute("minmaxEnabled")->getIntValue() != 0);
minHp = particleSystemTypeNode->getAttribute("minHp")->getIntValue();
maxHp = particleSystemTypeNode->getAttribute("maxHp")->getIntValue();
minmaxIsPercent = particleSystemTypeNode->getAttribute("minmaxIsPercent")->getIntValue();
minmaxIsPercent = (particleSystemTypeNode->getAttribute("minmaxIsPercent")->getIntValue() != 0);
}
void ParticleSystemType::saveGame(XmlNode *rootNode) {

View File

@@ -302,14 +302,14 @@ void UnitParticleSystemType::loadGame(const XmlNode *rootNode) {
minRadius = unitParticleSystemTypeNode->getAttribute("minRadius")->getFloatValue();
emissionRateFade = unitParticleSystemTypeNode->getAttribute("emissionRateFade")->getFloatValue();
direction = Vec3f::strToVec3(unitParticleSystemTypeNode->getAttribute("direction")->getValue());
relative = unitParticleSystemTypeNode->getAttribute("relative")->getIntValue();
relativeDirection = unitParticleSystemTypeNode->getAttribute("relativeDirection")->getIntValue();
fixed = unitParticleSystemTypeNode->getAttribute("fixed")->getIntValue();
relative = (unitParticleSystemTypeNode->getAttribute("relative")->getIntValue() != 0);
relativeDirection = (unitParticleSystemTypeNode->getAttribute("relativeDirection")->getIntValue() != 0);
fixed = (unitParticleSystemTypeNode->getAttribute("fixed")->getIntValue() != 0);
staticParticleCount = unitParticleSystemTypeNode->getAttribute("staticParticleCount")->getIntValue();
isVisibleAtNight = unitParticleSystemTypeNode->getAttribute("isVisibleAtNight")->getIntValue();
isVisibleAtDay = unitParticleSystemTypeNode->getAttribute("isVisibleAtDay")->getIntValue();
isDaylightAffected = unitParticleSystemTypeNode->getAttribute("isDaylightAffected")->getIntValue();
radiusBasedStartenergy = unitParticleSystemTypeNode->getAttribute("radiusBasedStartenergy")->getIntValue();
isVisibleAtNight = (unitParticleSystemTypeNode->getAttribute("isVisibleAtNight")->getIntValue() != 0);
isVisibleAtDay = (unitParticleSystemTypeNode->getAttribute("isVisibleAtDay")->getIntValue() != 0);
isDaylightAffected = (unitParticleSystemTypeNode->getAttribute("isDaylightAffected")->getIntValue() != 0);
radiusBasedStartenergy = (unitParticleSystemTypeNode->getAttribute("radiusBasedStartenergy")->getIntValue() != 0);
delay = unitParticleSystemTypeNode->getAttribute("delay")->getIntValue();
lifetime = unitParticleSystemTypeNode->getAttribute("lifetime")->getIntValue();
startTime = unitParticleSystemTypeNode->getAttribute("startTime")->getFloatValue();