1
0

Fixed angle normalization typo.

This commit is contained in:
madmaxoft 2013-12-08 18:54:04 +01:00
parent 4608beb3c6
commit 3712ee7b11

View File

@ -168,7 +168,7 @@ void cEntity::WrapHeadYaw(void)
void cEntity::WrapRotation(void) void cEntity::WrapRotation(void)
{ {
m_Rot.x = NormalizeAngleDegrees(m_Rot.x); m_Rot.x = NormalizeAngleDegrees(m_Rot.x);
m_Rot.y = NormalizeAngleDegrees(m_Rot.z); m_Rot.y = NormalizeAngleDegrees(m_Rot.y);
} }