Commit a608ef1f authored by Józef Kucia's avatar Józef Kucia Committed by Alexandre Julliard

dxgi: Return DXGI_ERROR_SDK_COMPONENT_MISSING from DXGIGetDebugInterface1().

parent a5aee1e1
......@@ -253,6 +253,6 @@ HRESULT WINAPI DXGIGetDebugInterface1(UINT flags, REFIID iid, void **debug)
{
TRACE("flags %#x, iid %s, debug %p.\n", flags, debugstr_guid(iid), debug);
WARN("Returning E_NOINTERFACE.\n");
return E_NOINTERFACE;
WARN("Returning DXGI_ERROR_SDK_COMPONENT_MISSING.\n");
return DXGI_ERROR_SDK_COMPONENT_MISSING;
}
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