Silly MSVC doesn't know how to handle type conversions for parameters of pow(). Help it.

This commit is contained in:
Perttu Ahola 2011-11-28 21:50:14 +02:00
parent a91eb36277
commit fe64f2b673
1 changed files with 1 additions and 1 deletions

View File

@ -592,7 +592,7 @@ public:
float chance = abm->getTriggerChance();
if(chance == 0)
chance = 1;
aabm.chance = 1.0 / pow(1.0 / chance, intervals);
aabm.chance = 1.0 / pow((float)1.0/chance, (float)intervals);
if(aabm.chance == 0)
aabm.chance = 1;
std::set<std::string> contents_s = abm->getTriggerContents();