d3dx9: Fix copy and paste mistake in ID3DXBaseEffect::GetPassDesc().

This commit is contained in:
Rico Schüller 2011-05-17 10:16:03 +02:00 committed by Alexandre Julliard
parent b7b9db00e3
commit e9c4e501f4
1 changed files with 1 additions and 1 deletions

View File

@ -817,7 +817,7 @@ static HRESULT WINAPI ID3DXBaseEffectImpl_GetPassDesc(ID3DXBaseEffect *iface, D3
FIXME("Pixel shader and vertex shader are not supported, yet.\n");
desc->pVertexShaderFunction = NULL;
desc->pVertexShaderFunction = NULL;
desc->pPixelShaderFunction = NULL;
return D3D_OK;
}