Changed: Use std::numeric_limits instead of ~0

--HG--
branch : develop
feature/pipeline-tools
kervala 9 years ago
parent da94a077b3
commit 2db7ca9729

@ -927,7 +927,7 @@ public:
CEntityCL *pSel = EntitiesMngr.entity(UserEntity->selection()); CEntityCL *pSel = EntitiesMngr.entity(UserEntity->selection());
if (pSel != NULL) if (pSel != NULL)
if (pSel->isForageSource()) if (pSel->isForageSource())
UserEntity->moveToExtractionPhrase(UserEntity->selection(), 2.0f, ~0, ~0, true); UserEntity->moveToExtractionPhrase(UserEntity->selection(), 2.0f, std::numeric_limits<uint>::max(), std::numeric_limits<uint>::max(), true);
} }
} }
}; };

Loading…
Cancel
Save