Module: wine Branch: master Commit: 076340402d78e7761514a4b0111380e165a4c6af URL: http://source.winehq.org/git/wine.git/?a=commit;h=076340402d78e7761514a4b011...
Author: David Adam jeremielapuree@yahoo.fr Date: Thu Oct 11 17:48:49 2007 +0200
d3dx8: Fix the definition of D3DXVECTOR.
---
include/d3dx8math.h | 5 +---- 1 files changed, 1 insertions(+), 4 deletions(-)
diff --git a/include/d3dx8math.h b/include/d3dx8math.h index 452eb05..71de014 100644 --- a/include/d3dx8math.h +++ b/include/d3dx8math.h @@ -34,10 +34,7 @@ typedef struct D3DXVECTOR2 FLOAT x, y; } D3DXVECTOR2, *LPD3DXVECTOR2;
-typedef struct D3DXVECTOR3 -{ - FLOAT x, y, z; -} D3DXVECTOR3, *LPD3DXVECTOR3; +typedef struct _D3DVECTOR D3DXVECTOR3, *LPD3DXVECTOR3;
typedef struct D3DXVECTOR4 {