_CIpow argument order was confirmed with Starcraft v1.05.

This commit is contained in:
Ove Kaaven 1999-04-15 16:45:17 +00:00 committed by Alexandre Julliard
parent 83827c190b
commit 9c1a05ab4e
1 changed files with 0 additions and 1 deletions

View File

@ -2031,7 +2031,6 @@ LONG __cdecl CRTDLL__CIpow(void) {
double x,y;
POP_FPU(y);
POP_FPU(x);
FIXME(crtdll,"(%f,%f): argument order unknown! Please report!\n",x,y);
return pow(x,y);
}
#else