=?UTF-8?Q?Fr=C3=A9d=C3=A9ric=20Delanoy=20?=: ddraw/tests: Use BOOL type where appropriate.

Alexandre Julliard julliard at winehq.org
Fri Jan 3 11:23:16 CST 2014


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

Author: Frédéric Delanoy <frederic.delanoy at gmail.com>
Date:   Fri Jan  3 02:03:29 2014 +0100

ddraw/tests: Use BOOL type where appropriate.

---

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

diff --git a/dlls/ddraw/tests/d3d.c b/dlls/ddraw/tests/d3d.c
index effe743..25da038 100644
--- a/dlls/ddraw/tests/d3d.c
+++ b/dlls/ddraw/tests/d3d.c
@@ -3193,11 +3193,11 @@ static void FindDevice(void)
     static const struct
     {
         const GUID *guid;
-        int todo;
+        BOOL todo;
     } deviceGUIDs[] =
     {
-        {&IID_IDirect3DRampDevice, 1},
-        {&IID_IDirect3DRGBDevice},
+        {&IID_IDirect3DRampDevice, TRUE},
+        {&IID_IDirect3DRGBDevice,  FALSE},
     };
 
     static const GUID *nonexistent_deviceGUIDs[] = {&IID_IDirect3DMMXDevice,




More information about the wine-cvs mailing list