Fix typo.

This commit is contained in:
Night Owl 2018-01-13 09:01:38 +05:00
parent bc1bb3e358
commit 8abffc9371
1 changed files with 1 additions and 1 deletions

View File

@ -989,7 +989,7 @@ float UTIL_Approach( float target, float value, float speed )
float UTIL_ApproachAngle( float target, float value, float speed )
{
target = UTIL_AngleMod( target );
value = UTIL_AngleMod( target );
value = UTIL_AngleMod( value );
float delta = target - value;