Stefan Dösinger : ddraw: Be less picky about float precision.

Alexandre Julliard julliard at winehq.org
Wed Nov 7 06:45:54 CST 2007


Module: wine
Branch: master
Commit: f9dba294772bff1297702ea9069be879b62e4ded
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=f9dba294772bff1297702ea9069be879b62e4ded

Author: Stefan Dösinger <stefan at codeweavers.com>
Date:   Fri Oct 26 18:40:58 2007 +0200

ddraw: Be less picky about float precision.

---

 dlls/ddraw/tests/d3d.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dlls/ddraw/tests/d3d.c b/dlls/ddraw/tests/d3d.c
index b82b67f..c1d5099 100644
--- a/dlls/ddraw/tests/d3d.c
+++ b/dlls/ddraw/tests/d3d.c
@@ -898,7 +898,7 @@ static void Direct3D1Test(void)
     };
     static struct v_in cliptest[] = {
         {25.59, 25.59, 1.0},  {-25.59, -25.59,  0.0},
-        {25.61, 25.61, 1.01}, {-25.60, -25.60, -0.01},
+        {25.61, 25.61, 1.01}, {-25.61, -25.61, -0.01},
     };
     static struct v_in offscreentest[] = {
         {128.1, 0.0, 0.0},




More information about the wine-cvs mailing list