mirror of
https://port.numenaute.org/aleajactaest/khanat-code-old.git
synced 2024-11-13 02:39:34 +00:00
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
|
||||
|
|
|
@ -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