CryEngine

Signed-off-by: Esteban Papp <81431996+amznestebanpapp@users.noreply.github.com>
This commit is contained in:
pappeste
2021-06-28 14:09:39 -07:00
committed by Esteban Papp
parent f99a21e733
commit 75dc3e5836
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -395,7 +395,7 @@ struct MotionParams905
MotionParams905()
{
m_nAssetFlags = 0;
m_nCompression = -1;
m_nCompression = std::numeric_limits<uint32>::max();
m_nTicksPerFrame = 0;
m_fSecsPerTick = 0;
m_nStart = 0;
+1 -1
View File
@@ -31,7 +31,7 @@ class InterpolatedValue_tpl;
// Unfortunately this needs to be here - should be in CryNetwork somewhere.
struct SNetObjectID
{
static const uint16 InvalidId = ~uint16(0);
static const uint16 InvalidId = std::numeric_limits<uint16>::max();
SNetObjectID()
: id(InvalidId)
@@ -339,7 +339,7 @@ void CViewSystem::SetActiveView(IView* pView)
}
else
{
m_activeViewId = ~0;
m_activeViewId = ~0u;
}
m_bActiveViewFromSequence = false;