Commit 1aa4c4a8 authored by Louis Lenders's avatar Louis Lenders Committed by Alexandre Julliard

xinput1_3: Quiet a noisy fixme.

parent daf29aa4
......@@ -69,7 +69,10 @@ DWORD WINAPI XInputSetState(DWORD dwUserIndex, XINPUT_VIBRATION* pVibration)
DWORD WINAPI XInputGetState(DWORD dwUserIndex, XINPUT_STATE* pState)
{
FIXME("(%u %p)\n", dwUserIndex, pState);
static int warn_once;
if (!warn_once++)
FIXME("(%u %p)\n", dwUserIndex, pState);
if (dwUserIndex < XUSER_MAX_COUNT)
{
......
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