[CRT] atan2 pass arguments in the correct order CID 1322203

svn path=/trunk/; revision=68927
This commit is contained in:
Christoph von Wittich 2015-09-03 07:35:54 +00:00
parent 743db122d7
commit d98b8f9a71

View file

@ -62,7 +62,7 @@ double CDECL _CIatan(void)
double CDECL _CIatan2(void)
{
FPU_DOUBLES(x, y);
return atan2(x, y);
return atan2(y, x);
}
/*
* @implemented