Commit 6151371d authored by Frédéric Delanoy's avatar Frédéric Delanoy Committed by Alexandre Julliard

ddraw/tests: Use BOOL type where appropriate.

parent 2a7cdcf3
...@@ -3193,11 +3193,11 @@ static void FindDevice(void) ...@@ -3193,11 +3193,11 @@ static void FindDevice(void)
static const struct static const struct
{ {
const GUID *guid; const GUID *guid;
int todo; BOOL todo;
} deviceGUIDs[] = } deviceGUIDs[] =
{ {
{&IID_IDirect3DRampDevice, 1}, {&IID_IDirect3DRampDevice, TRUE},
{&IID_IDirect3DRGBDevice}, {&IID_IDirect3DRGBDevice, FALSE},
}; };
static const GUID *nonexistent_deviceGUIDs[] = {&IID_IDirect3DMMXDevice, static const GUID *nonexistent_deviceGUIDs[] = {&IID_IDirect3DMMXDevice,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment