mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 09:19:01 +00:00
Fixed: Compilation warnings
--HG-- branch : hotfix
This commit is contained in:
parent
eb5fecf8ce
commit
3039428094
6 changed files with 9 additions and 9 deletions
|
@ -218,7 +218,7 @@ protected:
|
|||
date*= previous->OODeltaTime;
|
||||
NLMISC::clamp(date, 0,1);
|
||||
|
||||
date = this->ease(previous, date);
|
||||
date = this->ease(previous, (float)date);
|
||||
|
||||
float hb[4];
|
||||
this->computeHermiteBasis(date, hb);
|
||||
|
|
|
@ -231,7 +231,7 @@ bool CFormElm::isAtom () const
|
|||
const CType* CFormElm::getType ()
|
||||
{
|
||||
warning (false, "getType", "This node is not an atom.");
|
||||
return 0;
|
||||
return NULL;
|
||||
}
|
||||
|
||||
// ***************************************************************************
|
||||
|
|
|
@ -573,7 +573,7 @@ namespace ADMIN
|
|||
time_t t = now;
|
||||
fprintf(fp, "AESReportDate=%s", ::ctime(&t));
|
||||
|
||||
fprintf(fp, "NBService=%u\n", _ServiceStates.size());
|
||||
fprintf(fp, "NBService=%u\n", (uint)_ServiceStates.size());
|
||||
// output state of each service
|
||||
TServiceStates::iterator first(_ServiceStates.begin()), last(_ServiceStates.end());
|
||||
for (; first != last; ++first)
|
||||
|
|
|
@ -101,12 +101,12 @@ public:
|
|||
{
|
||||
}
|
||||
|
||||
CMsgAIFeedback(std::string message)
|
||||
CMsgAIFeedback(const std::string &message)
|
||||
{
|
||||
Message=message;
|
||||
}
|
||||
|
||||
CMsgAIFeedback(char *msgStr)
|
||||
CMsgAIFeedback(const char *msgStr)
|
||||
{
|
||||
Message=std::string(msgStr);
|
||||
}
|
||||
|
|
|
@ -242,11 +242,11 @@ float CItemCraftParameters::getCraftParameterValue( RM_FABER_STAT_TYPE::TRMStatT
|
|||
case RM_FABER_STAT_TYPE::ShockWaveProtection:
|
||||
case RM_FABER_STAT_TYPE::PoisonProtection:
|
||||
case RM_FABER_STAT_TYPE::ElectricityProtection:
|
||||
if (Protection1 == statType)
|
||||
if (Protection1 == (PROTECTION_TYPE::TProtectionType)statType)
|
||||
return Protection1Factor;
|
||||
else if (Protection2 == statType)
|
||||
else if (Protection2 == (PROTECTION_TYPE::TProtectionType)statType)
|
||||
return Protection2Factor;
|
||||
else if (Protection3 == statType)
|
||||
else if (Protection3 == (PROTECTION_TYPE::TProtectionType)statType)
|
||||
return Protection3Factor;
|
||||
else return 0.0f;
|
||||
case RM_FABER_STAT_TYPE::DesertResistance:
|
||||
|
|
|
@ -650,7 +650,7 @@ bool CStringManager::parseBlock(const ucstring &block, CPhrase &phrase)
|
|||
&& (first - clause.String.begin()) == (sint) clause.Replacements[repCount].InsertPlace)
|
||||
{
|
||||
// check parameter type
|
||||
char *subst;
|
||||
const char *subst;
|
||||
uint paramIndex = clause.Replacements[repCount].ParamIndex;
|
||||
|
||||
TParamId ¶mId = phrase.Params[paramIndex]->ParamId;
|
||||
|
|
Loading…
Reference in a new issue