Commit 567e35ce authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

dinput/tests: Drop superfluous TRUE : FALSE conditional expressions.

parent cf4b4ff6
......@@ -2950,7 +2950,7 @@ static BOOL test_force_feedback_joystick( DWORD version )
.expect_count = version < 0x700 ? ARRAY_SIZE(expect_objects_5) : ARRAY_SIZE(expect_objects),
.expect_objs = version < 0x700 ? expect_objects_5 : expect_objects,
.todo_objs = version < 0x700 ? todo_objects_5 : NULL,
.todo_extra = version < 0x700 ? TRUE : FALSE,
.todo_extra = version < 0x700,
};
struct check_effects_params check_effects_params =
{
......
......@@ -1781,7 +1781,7 @@ static void test_simple_joystick( DWORD version )
.expect_count = version < 0x700 ? ARRAY_SIZE(expect_objects_5) : ARRAY_SIZE(expect_objects),
.expect_objs = version < 0x700 ? expect_objects_5 : expect_objects,
.todo_objs = version < 0x700 ? todo_objects_5 : NULL,
.todo_extra = version < 0x700 ? TRUE : FALSE,
.todo_extra = version < 0x700,
};
const DIEFFECTINFOW expect_effects[] = {};
......
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