From f2fa6a934d838b4edb5386598d1415782e965d26 Mon Sep 17 00:00:00 2001 From: Filippos Karapetis Date: Mon, 1 Oct 2012 03:06:59 +0300 Subject: SCI: Fix compilation with MSVC (atan2() was ambiguous) --- engines/sci/engine/kpathing.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'engines') diff --git a/engines/sci/engine/kpathing.cpp b/engines/sci/engine/kpathing.cpp index ee65d5955d..4061795f82 100644 --- a/engines/sci/engine/kpathing.cpp +++ b/engines/sci/engine/kpathing.cpp @@ -1912,7 +1912,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(p.y, p.x)); + int deg = (int)Common::rad2deg(atan2((double)p.y, (double)p.x)); if (deg < -180) deg += 360; if (deg > 180) deg -= 360; return deg; -- cgit v1.2.3