Synchronize parameter names in definition and declaration
Fixes #10244.
This commit is contained in:
parent
b1ecaaa22b
commit
00f6c85928
134 changed files with 974 additions and 974 deletions
|
|
@ -235,13 +235,13 @@ void JoypadWindows::setup_joypad_object(const DIDEVICEOBJECTINSTANCE *ob, int p_
|
|||
}
|
||||
}
|
||||
|
||||
BOOL CALLBACK JoypadWindows::enumCallback(const DIDEVICEINSTANCE *instance, void *pContext) {
|
||||
BOOL CALLBACK JoypadWindows::enumCallback(const DIDEVICEINSTANCE *p_instance, void *p_context) {
|
||||
|
||||
JoypadWindows *self = (JoypadWindows *)pContext;
|
||||
if (self->is_xinput_device(&instance->guidProduct)) {
|
||||
JoypadWindows *self = (JoypadWindows *)p_context;
|
||||
if (self->is_xinput_device(&p_instance->guidProduct)) {
|
||||
return DIENUM_CONTINUE;
|
||||
}
|
||||
self->setup_dinput_joypad(instance);
|
||||
self->setup_dinput_joypad(p_instance);
|
||||
return DIENUM_CONTINUE;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue