From 2bd2db10aa96c7d6ee17f4132ee6d317ccc6cf62 Mon Sep 17 00:00:00 2001 From: Johannes Schickel Date: Mon, 2 Jun 2014 01:00:15 +0200 Subject: SCI: Silence double to float conversion warning. --- engines/sci/engine/kpathing.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'engines/sci') diff --git a/engines/sci/engine/kpathing.cpp b/engines/sci/engine/kpathing.cpp index 940bd38adb..67d814b86f 100644 --- a/engines/sci/engine/kpathing.cpp +++ b/engines/sci/engine/kpathing.cpp @@ -1921,7 +1921,7 @@ static int intersectDir(const Vertex *v1, const Vertex *v2) { // Direction of edge in degrees from pos. x-axis, between -180 and 180 static int edgeDir(const Vertex *v) { Common::Point p = v->_next->v - v->v; - int deg = (int)Common::rad2deg(atan2((double)p.y, (double)p.x)); + int deg = (int)Common::rad2deg((float)atan2((double)p.y, (double)p.x)); if (deg < -180) deg += 360; if (deg > 180) deg -= 360; return deg; -- cgit v1.2.3