Skip to content

Commit

Permalink
Just return OK for ProcessVertices()
Browse files Browse the repository at this point in the history
  • Loading branch information
elishacloud committed Aug 13, 2024
1 parent eeafd18 commit b7daafe
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Dllmain/BuildNo.rc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
#define BUILD_NUMBER 7088
#define BUILD_NUMBER 7089
6 changes: 4 additions & 2 deletions ddraw/IDirect3DVertexBufferX.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -315,10 +315,12 @@ HRESULT m_IDirect3DVertexBufferX::ProcessVertices(DWORD dwVertexOp, DWORD dwDest

if (FAILED(hr))
{
LOG_LIMIT(100, __FUNCTION__ << " Error: 'ProcessVertices' call failed: " << (D3DERR)hr);
LOG_LIMIT(100, __FUNCTION__ << " Warning: 'ProcessVertices' call failed: " << (D3DERR)hr);
}

return hr;
// ToDo: Fix this
// Just return OK for now
return D3D_OK; // hr;
}

if (lpSrcBuffer)
Expand Down

0 comments on commit b7daafe

Please sign in to comment.