dxgi: Return DXGI_ERROR_SDK_COMPONENT_MISSING from DXGIGetDebugInterface1().

Signed-off-by: Józef Kucia <jkucia@codeweavers.com>
Signed-off-by: Henri Verbeet <hverbeet@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
oldstable
Józef Kucia 2018-08-15 12:03:23 +02:00 committed by Alexandre Julliard
parent a5aee1e152
commit a608ef1f2d
1 changed files with 2 additions and 2 deletions

View File

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