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
53f64a09
Commit
53f64a09
authored
Jan 04, 2008
by
Peter Dons Tychsen
Committed by
Alexandre Julliard
Jan 07, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dinput: Silence incorrect warning and move it to a valid place.
parent
9a96ac0d
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
2 deletions
+5
-2
dinput_main.c
dlls/dinput/dinput_main.c
+5
-0
joystick_linux.c
dlls/dinput/joystick_linux.c
+0
-1
joystick_linuxinput.c
dlls/dinput/joystick_linuxinput.c
+0
-1
No files found.
dlls/dinput/dinput_main.c
View file @
53f64a09
...
...
@@ -464,6 +464,11 @@ static HRESULT WINAPI IDirectInput7AImpl_CreateDeviceEx(LPDIRECTINPUT7A iface, R
ret_value
=
DIERR_NOINTERFACE
;
}
if
(
ret_value
==
DIERR_NOINTERFACE
)
{
WARN
(
"invalid device GUID %s
\n
"
,
debugstr_guid
(
rguid
));
}
return
ret_value
;
}
...
...
dlls/dinput/joystick_linux.c
View file @
53f64a09
...
...
@@ -574,7 +574,6 @@ static HRESULT joydev_create_deviceA(IDirectInputImpl *dinput, REFGUID rguid, RE
return
DIERR_NOINTERFACE
;
}
WARN
(
"invalid device GUID %s
\n
"
,
debugstr_guid
(
rguid
));
return
DIERR_DEVICENOTREG
;
}
...
...
dlls/dinput/joystick_linuxinput.c
View file @
53f64a09
...
...
@@ -565,7 +565,6 @@ static HRESULT joydev_create_deviceA(IDirectInputImpl *dinput, REFGUID rguid, RE
return
DIERR_NOINTERFACE
;
}
WARN
(
"invalid device GUID
\n
"
);
return
DIERR_DEVICENOTREG
;
}
...
...
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