Merge pull request #44 from nekonomicon/angles

Fix typo.
This commit is contained in:
Alibek Omarov 2018-01-18 22:13:35 +03:00 committed by GitHub
commit 88d1a860d7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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;