mirror of
https://port.numenaute.org/aleajactaest/khanat-code-old.git
synced 2024-11-10 09:19:01 +00:00
Changed: #825 Remove all warning when compiling Ryzom
This commit is contained in:
parent
b7e53676da
commit
00c431845a
3 changed files with 5 additions and 5 deletions
|
@ -1762,7 +1762,7 @@ bool CExport::generateIGFromFlora (const std::string &SrcFile, std::vector<SExpo
|
||||||
if (posf < total) break;
|
if (posf < total) break;
|
||||||
}
|
}
|
||||||
if (j == formFlora.PlantInstances.size())
|
if (j == formFlora.PlantInstances.size())
|
||||||
j = formFlora.PlantInstances.size()-1;
|
j = (uint32)formFlora.PlantInstances.size()-1;
|
||||||
|
|
||||||
SPlantInstance &rPlant = formFlora.PlantInstances[j];
|
SPlantInstance &rPlant = formFlora.PlantInstances[j];
|
||||||
map<string, SFormPlant>::iterator it = Plants.find (rPlant.Name);
|
map<string, SFormPlant>::iterator it = Plants.find (rPlant.Name);
|
||||||
|
@ -1846,7 +1846,7 @@ bool CExport::generateIGFromFlora (const std::string &SrcFile, std::vector<SExpo
|
||||||
}
|
}
|
||||||
if (l == (pPath->VPoints.size()-1))
|
if (l == (pPath->VPoints.size()-1))
|
||||||
{
|
{
|
||||||
l = pPath->VPoints.size()-2;
|
l = (uint32)pPath->VPoints.size()-2;
|
||||||
curvAbs = (pPath->VPoints[l]-pPath->VPoints[l+1]).norm();
|
curvAbs = (pPath->VPoints[l]-pPath->VPoints[l+1]).norm();
|
||||||
}
|
}
|
||||||
// Calculate the coord
|
// Calculate the coord
|
||||||
|
|
|
@ -22,7 +22,7 @@
|
||||||
#include "nel/misc/i_xml.h"
|
#include "nel/misc/i_xml.h"
|
||||||
|
|
||||||
#include "../land_export_lib/export.h"
|
#include "../land_export_lib/export.h"
|
||||||
#include "nel/../../src/ligo/zone_region.h"
|
#include "nel/ligo/zone_region.h"
|
||||||
|
|
||||||
using namespace std;
|
using namespace std;
|
||||||
using namespace NLMISC;
|
using namespace NLMISC;
|
||||||
|
|
|
@ -311,10 +311,10 @@ sint main( sint argc, char ** argv )
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case 1: // code
|
case 1: // code
|
||||||
skill.Code = strupr(string( ptr ));
|
skill.Code = toUpper(string( ptr ));
|
||||||
break;
|
break;
|
||||||
case 2: // parent skill
|
case 2: // parent skill
|
||||||
skill.ParentSkill = strupr(string( ptr ));
|
skill.ParentSkill = toUpper(string( ptr ));
|
||||||
break;
|
break;
|
||||||
case 3: // max skill value
|
case 3: // max skill value
|
||||||
skill.MaxValue = (uint16)atoi(ptr);
|
skill.MaxValue = (uint16)atoi(ptr);
|
||||||
|
|
Loading…
Reference in a new issue