1
0
mirror of https://github.com/alliedmodders/hl2sdk.git synced 2025-09-20 20:46:03 +08:00

Fixed SendProp::GetOffset returning garbage values for some props (bug 5312, r=me).

This commit is contained in:
Nicholas Hastings
2012-05-29 18:02:29 -04:00
parent 72d9dab127
commit b0f2f5e019

View File

@ -277,7 +277,7 @@ private:
inline int SendProp::GetOffset() const
{
return m_Offset;
return m_Offset & 0xFFFFF;
}
inline void SendProp::SetOffset( int i )