Commit cde699b2 authored by Kovács András's avatar Kovács András Committed by Alexandre Julliard

dinput: Return an error in IDirectInputDevice2AImpl_GetProperty().

parent e5cd19a4
......@@ -887,8 +887,8 @@ HRESULT WINAPI IDirectInputDevice2AImpl_GetProperty(
break;
}
default:
WARN("Unknown property %s\n", debugstr_guid(rguid));
break;
FIXME("Unknown property %s\n", debugstr_guid(rguid));
return DIERR_INVALIDPARAM;
}
return DI_OK;
......
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