Fix cast in GetClampedCoords.

This commit is contained in:
Alex 2023-01-15 15:10:30 +05:00
parent 8c6eb4ce22
commit 2382764009
1 changed files with 1 additions and 1 deletions

View File

@ -152,7 +152,7 @@ VECTOR2<ret_type> GetClampedCoords( const VECTOR2<in_type>& aCoords, pad_type aP
{
typedef std::numeric_limits<int> coord_limits;
long long max = long long( coord_limits::max() ) - aPadding;
long long max = static_cast<long long>( coord_limits::max() ) - aPadding;
long long min = -max;
in_type x = aCoords.x;