Module: wine Branch: master Commit: b87e167fa33a67d793c66b5bb06c3f18d8c5c4df URL: http://source.winehq.org/git/wine.git/?a=commit;h=b87e167fa33a67d793c66b5bb0...
Author: Stefan Dösinger stefan@codeweavers.com Date: Fri Jan 3 14:17:19 2014 +0100
d3dx9_36: Make the order parameter of weightedcapintegrale an UINT.
---
dlls/d3dx9_36/math.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/d3dx9_36/math.c b/dlls/d3dx9_36/math.c index a5dbee1..f98927f 100644 --- a/dlls/d3dx9_36/math.c +++ b/dlls/d3dx9_36/math.c @@ -2286,7 +2286,7 @@ FLOAT WINAPI D3DXSHDot(UINT order, const FLOAT *a, const FLOAT *b) return s; }
-static void weightedcapintegrale(FLOAT *out, FLOAT order, FLOAT angle) +static void weightedcapintegrale(FLOAT *out, UINT order, FLOAT angle) { FLOAT coeff[3];