return S_OK in IDirect3DX__EnumDevices

This commit is contained in:
FunkyFr3sh 2024-09-18 18:02:15 +02:00
parent e142d06946
commit 3a3f11afc8
4 changed files with 4 additions and 4 deletions

View file

@ -46,7 +46,7 @@ ULONG __stdcall IDirect3D3__Release(IDirect3D3Impl* This)
HRESULT __stdcall IDirect3D3__EnumDevices(IDirect3D3Impl* This, int a, int b)
{
TRACE("NOT_IMPLEMENTED -> %s(This=%p) [%p]\n", __FUNCTION__, This, _ReturnAddress());
HRESULT ret = E_FAIL;
HRESULT ret = S_OK;
TRACE("NOT_IMPLEMENTED <- %s\n", __FUNCTION__);
return ret;
}