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
8b09a8eb
Commit
8b09a8eb
authored
Dec 28, 2008
by
Vitaliy Margolen
Committed by
Alexandre Julliard
Dec 29, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dinput: Fix remaining formatting of the find_joydevs().
parent
a610cfb6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
22 additions
and
19 deletions
+22
-19
joystick_linuxinput.c
dlls/dinput/joystick_linuxinput.c
+22
-19
No files found.
dlls/dinput/joystick_linuxinput.c
View file @
8b09a8eb
...
...
@@ -263,27 +263,30 @@ static void find_joydevs(void)
continue
;
}
/* A true joystick has at least axis X and Y, and at least 1
* button. copied from linux/drivers/input/joydev.c */
if
(
test_bit
(
joydev
.
absbits
,
ABS_X
)
&&
test_bit
(
joydev
.
absbits
,
ABS_Y
)
&&
(
test_bit
(
joydev
.
keybits
,
BTN_TRIGGER
)
||
test_bit
(
joydev
.
keybits
,
BTN_A
)
||
test_bit
(
joydev
.
keybits
,
BTN_1
)
)
)
{
if
(
!
(
joydev
.
device
=
HeapAlloc
(
GetProcessHeap
(),
0
,
strlen
(
buf
)
+
1
)))
{
close
(
fd
);
continue
;
/* A true joystick has at least axis X and Y, and at least 1
* button. copied from linux/drivers/input/joydev.c */
if
(
!
test_bit
(
joydev
.
absbits
,
ABS_X
)
||
!
test_bit
(
joydev
.
absbits
,
ABS_Y
)
||
!
(
test_bit
(
joydev
.
keybits
,
BTN_TRIGGER
)
||
test_bit
(
joydev
.
keybits
,
BTN_A
)
||
test_bit
(
joydev
.
keybits
,
BTN_1
)))
{
close
(
fd
);
continue
;
}
if
(
!
(
joydev
.
device
=
HeapAlloc
(
GetProcessHeap
(),
0
,
strlen
(
buf
)
+
1
)))
{
close
(
fd
);
continue
;
}
strcpy
(
joydev
.
device
,
buf
);
buf
[
MAX_PATH
-
1
]
=
0
;
if
(
ioctl
(
fd
,
EVIOCGNAME
(
MAX_PATH
-
1
),
buf
)
!=
-
1
&&
(
joydev
.
name
=
HeapAlloc
(
GetProcessHeap
(),
0
,
strlen
(
buf
)
+
1
)))
strcpy
(
joydev
.
name
,
buf
);
strcpy
(
joydev
.
name
,
buf
);
else
joydev
.
name
=
joydev
.
device
;
joydev
.
name
=
joydev
.
device
;
joydev
.
guid
=
DInput_Wine_Joystick_Base_GUID
;
joydev
.
guid
.
Data3
+=
have_joydevs
;
...
...
@@ -305,9 +308,11 @@ static void find_joydevs(void)
}
#endif
for
(
j
=
0
;
j
<
ABS_MAX
;
j
++
)
{
if
(
test_bit
(
joydev
.
absbits
,
j
))
{
if
(
-
1
!=
ioctl
(
fd
,
EVIOCGABS
(
j
),
&
(
joydev
.
axes
[
j
])))
{
for
(
j
=
0
;
j
<
ABS_MAX
;
j
++
)
{
if
(
!
test_bit
(
joydev
.
absbits
,
j
))
continue
;
if
(
ioctl
(
fd
,
EVIOCGABS
(
j
),
&
(
joydev
.
axes
[
j
]))
!=
-
1
)
{
TRACE
(
" ... with axis %d: cur=%d, min=%d, max=%d, fuzz=%d, flat=%d
\n
"
,
j
,
joydev
.
axes
[
j
].
value
,
...
...
@@ -317,7 +322,6 @@ static void find_joydevs(void)
joydev
.
axes
[
j
].
flat
);
}
}
}
if
(
!
have_joydevs
)
...
...
@@ -333,7 +337,6 @@ static void find_joydevs(void)
joydevs
=
new_joydevs
;
memcpy
(
joydevs
+
have_joydevs
,
&
joydev
,
sizeof
(
joydev
));
have_joydevs
++
;
}
close
(
fd
);
}
...
...
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