Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
567e35ce
Commit
567e35ce
authored
Mar 30, 2023
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Mar 31, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dinput/tests: Drop superfluous TRUE : FALSE conditional expressions.
parent
cf4b4ff6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
force_feedback.c
dlls/dinput/tests/force_feedback.c
+1
-1
joystick8.c
dlls/dinput/tests/joystick8.c
+1
-1
No files found.
dlls/dinput/tests/force_feedback.c
View file @
567e35ce
...
...
@@ -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
=
{
...
...
dlls/dinput/tests/joystick8.c
View file @
567e35ce
...
...
@@ -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
[]
=
{};
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment