Commit a8b76781 authored by Henri Verbeet's avatar Henri Verbeet Committed by Alexandre Julliard

d3dx9_36: Not implementing an interface is not an internal error.

parent d85730c8
......@@ -793,7 +793,7 @@ static HRESULT WINAPI ID3DXMatrixStackImpl_QueryInterface(ID3DXMatrixStack *ifac
return S_OK;
}
*ppobj = NULL;
ERR("(%p)->(%s,%p),not found\n",This,debugstr_guid(riid),ppobj);
WARN("(%p)->(%s,%p), not found\n", This, debugstr_guid(riid), ppobj);
return E_NOINTERFACE;
}
......
......@@ -299,7 +299,7 @@ static HRESULT WINAPI ID3DXConstantTableImpl_QueryInterface(ID3DXConstantTable*
return S_OK;
}
ERR("Interface %s not found\n", debugstr_guid(riid));
WARN("Interface %s not found.\n", debugstr_guid(riid));
return E_NOINTERFACE;
}
......
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