Commit 2d2d8332 authored by Bruno Jesus's avatar Bruno Jesus Committed by Alexandre Julliard

dinput: Downgrade a FIXME to WARN in JoystickWImpl_SendForceFeedbackCommand.

All valid commands are already there, anything else is an app bug. Signed-off-by: 's avatarBruno Jesus <00cpxxx@gmail.com> Signed-off-by: 's avatarAlexandre Julliard <julliard@winehq.org>
parent cc373223
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment