Skip to content

Commit

Permalink
return S_OK in IDirect3DX__EnumDevices
Browse files Browse the repository at this point in the history
  • Loading branch information
FunkyFr3sh committed Sep 18, 2024
1 parent e142d06 commit 3a3f11a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/IDirect3D/IDirect3D.c
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ HRESULT __stdcall IDirect3D__Initialize(IDirect3DImpl* This, int a)
HRESULT __stdcall IDirect3D__EnumDevices(IDirect3DImpl* 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;
}
Expand Down
2 changes: 1 addition & 1 deletion src/IDirect3D/IDirect3D2.c
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ ULONG __stdcall IDirect3D2__Release(IDirect3D2Impl* This)
HRESULT __stdcall IDirect3D2__EnumDevices(IDirect3D2Impl* 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;
}
Expand Down
2 changes: 1 addition & 1 deletion src/IDirect3D/IDirect3D3.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down
2 changes: 1 addition & 1 deletion src/IDirect3D/IDirect3D7.c
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ ULONG __stdcall IDirect3D7__Release(IDirect3D7Impl* This)
HRESULT __stdcall IDirect3D7__EnumDevices(IDirect3D7Impl* 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;
}
Expand Down

0 comments on commit 3a3f11a

Please sign in to comment.