Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
74329496
Commit
74329496
authored
Aug 25, 2012
by
Gerald Pfeifer
Committed by
Alexandre Julliard
Aug 27, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dinput: Fix incorrect check in device_disabled_registry.
parent
ac8019df
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
joystick.c
dlls/dinput/joystick.c
+3
-3
No files found.
dlls/dinput/joystick.c
View file @
74329496
...
...
@@ -51,8 +51,8 @@ static inline IDirectInputDevice8W *IDirectInputDevice8W_from_impl(JoystickGener
BOOL
device_disabled_registry
(
const
char
*
name
)
{
static
const
char
*
disabled_str
=
"disabled"
;
static
const
char
*
joystick_key
=
"Joysticks"
;
static
const
char
disabled_str
[]
=
"disabled"
;
static
const
char
joystick_key
[]
=
"Joysticks"
;
char
buffer
[
MAX_PATH
];
HKEY
hkey
,
appkey
,
temp
;
BOOL
do_disable
=
FALSE
;
...
...
@@ -75,7 +75,7 @@ BOOL device_disabled_registry(const char* name)
/* Look for the "controllername"="disabled" key */
if
(
!
get_config_key
(
hkey
,
appkey
,
name
,
buffer
,
sizeof
(
buffer
)))
if
(
!
str
ncmp
(
disabled_str
,
buffer
,
sizeof
(
disabled_str
)
))
if
(
!
str
cmp
(
disabled_str
,
buffer
))
{
TRACE
(
"Disabling joystick '%s' based on registry key.
\n
"
,
name
);
do_disable
=
TRUE
;
...
...
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