diff options
Diffstat (limited to 'mp/src/game/server/ai_movesolver.cpp')
| -rw-r--r-- | mp/src/game/server/ai_movesolver.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mp/src/game/server/ai_movesolver.cpp b/mp/src/game/server/ai_movesolver.cpp index 1dc81849..101056a7 100644 --- a/mp/src/game/server/ai_movesolver.cpp +++ b/mp/src/game/server/ai_movesolver.cpp @@ -15,7 +15,7 @@ //----------------------------------------------------------------------------- -inline float round( float f ) +inline float V_round( float f ) { return (float)( (int)( f + 0.5 ) ); } @@ -133,7 +133,7 @@ bool CAI_MoveSolver::Solve( const AI_MoveSuggestion_t *pSuggestions, int nSugges // Convert arc values to solution indices relative to right post. Right is angle down, left is angle up. float halfSpan = current.arc.span * 0.5; - int center = round( ( halfSpan * NUM_SOLUTIONS ) / 360 ); + int center = V_round( ( halfSpan * NUM_SOLUTIONS ) / 360 ); int left = ( current.arc.span * NUM_SOLUTIONS ) / 360; float angRight = current.arc.center - halfSpan; |