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

ddraw: Replace an ERR in IDirect3DDeviceImpl_7_QueryInterface() with a WARN.

parent 4f91eb3f
...@@ -190,7 +190,7 @@ IDirect3DDeviceImpl_7_QueryInterface(IDirect3DDevice7 *iface, ...@@ -190,7 +190,7 @@ IDirect3DDeviceImpl_7_QueryInterface(IDirect3DDevice7 *iface,
/* Unknown interface */ /* Unknown interface */
else else
{ {
ERR("(%p)->(%s, %p): No interface found\n", This, debugstr_guid(refiid), obj); WARN("%s not implemented, returning E_NOINTERFACE.\n", debugstr_guid(refiid));
return E_NOINTERFACE; 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