mirror of
https://github.com/reactos/wine.git
synced 2025-02-12 23:58:56 +00:00
dinput: Downgrade a FIXME to WARN in JoystickWImpl_SendForceFeedbackCommand.
All valid commands are already there, anything else is an app bug. Signed-off-by: Bruno Jesus <00cpxxx@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
cc373223b0
commit
2d2d833248
@ -1351,7 +1351,7 @@ static HRESULT WINAPI JoystickWImpl_SendForceFeedbackCommand(LPDIRECTINPUTDEVICE
|
||||
}
|
||||
case DISFFC_PAUSE:
|
||||
case DISFFC_CONTINUE:
|
||||
FIXME("No support for Pause or Continue in linux\n");
|
||||
FIXME("No support for Pause or Continue in linux\n");
|
||||
break;
|
||||
|
||||
case DISFFC_SETACTUATORSOFF:
|
||||
@ -1360,8 +1360,8 @@ static HRESULT WINAPI JoystickWImpl_SendForceFeedbackCommand(LPDIRECTINPUTDEVICE
|
||||
break;
|
||||
|
||||
default:
|
||||
FIXME("Unknown Force Feedback Command!\n");
|
||||
return DIERR_INVALIDPARAM;
|
||||
WARN("Unknown Force Feedback Command %u!\n", dwFlags);
|
||||
return DIERR_INVALIDPARAM;
|
||||
}
|
||||
return DI_OK;
|
||||
#else
|
||||
|
Loading…
x
Reference in New Issue
Block a user