diff options
| -rw-r--r-- | engines/neverhood/graphics.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/engines/neverhood/graphics.cpp b/engines/neverhood/graphics.cpp index 8a30b20df4..66a7999e59 100644 --- a/engines/neverhood/graphics.cpp +++ b/engines/neverhood/graphics.cpp @@ -343,7 +343,7 @@ void unpackSpriteNormal(const byte *source, int width, int height, byte *dest, i  int calcDistance(int16 x1, int16 y1, int16 x2, int16 y2) {  	const int16 deltaX = ABS(x1 - x2);  	const int16 deltaY = ABS(y1 - y2); -	return sqrt((double)(deltaX * deltaX + deltaY * deltaY)); +	return (int)sqrt((double)(deltaX * deltaX + deltaY * deltaY));  }  } // End of namespace Neverhood | 
