mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 16:23:01 +00:00
[CRT] atan2 pass arguments in the correct order CID 1322203
svn path=/trunk/; revision=68927
This commit is contained in:
parent
743db122d7
commit
d98b8f9a71
1 changed files with 1 additions and 1 deletions
|
@ -62,7 +62,7 @@ double CDECL _CIatan(void)
|
||||||
double CDECL _CIatan2(void)
|
double CDECL _CIatan2(void)
|
||||||
{
|
{
|
||||||
FPU_DOUBLES(x, y);
|
FPU_DOUBLES(x, y);
|
||||||
return atan2(x, y);
|
return atan2(y, x);
|
||||||
}
|
}
|
||||||
/*
|
/*
|
||||||
* @implemented
|
* @implemented
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue