Fixed angle normalization typo.
This commit is contained in:
parent
4608beb3c6
commit
3712ee7b11
@ -168,7 +168,7 @@ void cEntity::WrapHeadYaw(void)
|
||||
void cEntity::WrapRotation(void)
|
||||
{
|
||||
m_Rot.x = NormalizeAngleDegrees(m_Rot.x);
|
||||
m_Rot.y = NormalizeAngleDegrees(m_Rot.z);
|
||||
m_Rot.y = NormalizeAngleDegrees(m_Rot.y);
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user