Skip to content

Commit

Permalink
Fix error message
Browse files Browse the repository at this point in the history
Fixes #350
  • Loading branch information
elishacloud committed Mar 4, 2025
1 parent 775b8a6 commit 8a89841
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ddraw/IDirect3DDeviceX.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3390,7 +3390,7 @@ HRESULT m_IDirect3DDeviceX::SetRenderState(D3DRENDERSTATETYPE dwRenderStateType,
case D3DRENDERSTATE_TEXTUREPERSPECTIVE: // 4
if (dwRenderState != rsTexturePerspective)
{
LOG_LIMIT(100, __FUNCTION__ << " Warning: 'D3DRENDERSTATE_ZVISIBLE' not implemented: " << dwRenderState);
LOG_LIMIT(100, __FUNCTION__ << " Warning: 'D3DRENDERSTATE_TEXTUREPERSPECTIVE' not implemented: " << dwRenderState);
}
rsTexturePerspective = dwRenderState;
return D3D_OK;
Expand Down

0 comments on commit 8a89841

Please sign in to comment.