Skip to content

Commit e699503

Browse files
author
Spacebrain
committed
xrIDirect3DDevice9::GetSoftwareVertexProcessing was returning a HRESULT instead of a BOOL
1 parent fdc90c6 commit e699503

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/xrD3D9-Null/IDirect3DDevice9.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -326,7 +326,7 @@ HRESULT xrIDirect3DDevice9::GetScissorRect( RECT* pRect)
326326
HRESULT xrIDirect3DDevice9::SetSoftwareVertexProcessing( BOOL bSoftware)
327327
{ APIDEBUG("xrIDirect3DDevice9::SetSoftwareVertexProcessing"); return HRESULT_Proc(S_OK); };
328328
BOOL xrIDirect3DDevice9::GetSoftwareVertexProcessing()
329-
{ APIDEBUG("xrIDirect3DDevice9::GetSoftwareVertexProcessing"); return HRESULT_Proc(S_OK); };
329+
{ APIDEBUG("xrIDirect3DDevice9::GetSoftwareVertexProcessing"); return TRUE; };
330330
HRESULT xrIDirect3DDevice9::SetNPatchMode( float nSegments)
331331
{ APIDEBUG("xrIDirect3DDevice9::SetNPatchMode"); return HRESULT_Proc(S_OK); };
332332
float xrIDirect3DDevice9::GetNPatchMode()

0 commit comments

Comments
 (0)