Changed: Minor changes
This commit is contained in:
parent
39f838a1fd
commit
ad3e425e3e
3 changed files with 197 additions and 193 deletions
|
@ -203,7 +203,7 @@ int main(int argc, char* argv[])
|
|||
{
|
||||
CInfoMaskGeneration infoMaskGen(_Path_Input_TexBases,
|
||||
_Path_Input_Masks,
|
||||
_Path_Output_MaksOptimized,
|
||||
_Path_Output_MasksOptimized,
|
||||
_Path_Output_Gtm,
|
||||
argv[3],
|
||||
1);
|
||||
|
@ -651,6 +651,7 @@ static void BuildColoredVersionForOneBitmap(const CBuildInfo &bi, const std::str
|
|||
{
|
||||
throw NLMISC::Exception(std::string("Failed to load bitmap ") + actualInputPath + fileNameWithExtension);
|
||||
}
|
||||
|
||||
if (srcBitmap.PixelFormat != NLMISC::CBitmap::RGBA)
|
||||
{
|
||||
srcBitmap.convertToType(NLMISC::CBitmap::RGBA);
|
||||
|
@ -735,6 +736,7 @@ static void BuildColoredVersionForOneBitmap(const CBuildInfo &bi, const std::str
|
|||
{
|
||||
throw NLMISC::Exception("Bitmap and mask do not have the same size");
|
||||
}
|
||||
|
||||
masks.push_back(li);
|
||||
}
|
||||
else
|
||||
|
@ -799,7 +801,7 @@ static void BuildColoredVersionForOneBitmap(const CBuildInfo &bi, const std::str
|
|||
}
|
||||
|
||||
// save good hlsInfo instance name
|
||||
hlsTextInstance.Name= outputFileName + bi.OutputFormat;
|
||||
hlsTextInstance.Name = outputFileName + bi.OutputFormat;
|
||||
|
||||
nlwarning("Writing %s", outputFileName.c_str());
|
||||
/// Save the result. We let propagate exceptions (if there's no more space disk it useless to continue...)
|
||||
|
|
|
@ -858,12 +858,14 @@ bool CGrpFauna::spawnPop(uint popVersion)
|
|||
do
|
||||
{
|
||||
++_CurrentCycleIndex;
|
||||
} while ( _CurrentCycleIndex<(sint32)cycle._PopList.size()
|
||||
}
|
||||
while ( _CurrentCycleIndex<(sint32)cycle._PopList.size()
|
||||
&& !_Populations[cycle._PopList[_CurrentCycleIndex]]);
|
||||
|
||||
if (_CurrentCycleIndex<(sint32)cycle._PopList.size())
|
||||
{
|
||||
popVersion=cycle._PopList[_CurrentCycleIndex];
|
||||
|
||||
if (!timeAllowSpawn(popVersion))
|
||||
{
|
||||
popVersion=~0;
|
||||
|
|
Loading…
Reference in a new issue