dinput: Return an error in IDirectInputDevice2AImpl_GetProperty().

oldstable
Kovács András 2010-09-15 23:48:12 -05:00 committed by Alexandre Julliard
parent e5cd19a4cb
commit cde699b286
1 changed files with 2 additions and 2 deletions

View File

@ -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;