Fix bad type passed to sscanf

This commit is contained in:
kaetemi 2014-09-15 12:49:13 +02:00
parent 4061ada656
commit fab78e58e9

View file

@ -581,7 +581,7 @@ void AISHEETS::CCreature::readGeorges(NLMISC::CSmartPtr<NLGEORGES::UForm> const&
}
if (item.getValueByName(s, "Basics.FameForGuardAttack") && !s.empty())
{
double tmp;
float tmp;
sscanf(s.c_str(), "%f", &tmp);
_FameForGuardAttack = (sint32)tmp;
}