dinput: Return an error in IDirectInputDevice2AImpl_GetProperty().

This commit is contained in:
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; break;
} }
default: default:
WARN("Unknown property %s\n", debugstr_guid(rguid)); FIXME("Unknown property %s\n", debugstr_guid(rguid));
break; return DIERR_INVALIDPARAM;
} }
return DI_OK; return DI_OK;