Merge branch 'angles' into CAd

This commit is contained in:
Night Owl 2018-02-11 17:08:45 +05:00
commit f441bdc7ca

View File

@ -1005,7 +1005,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;