Christian Costa : d3dx9: Fix typo in ID3DXConstantTable_SetMatrixTranspose macro.

Alexandre Julliard julliard at winehq.org
Mon Mar 15 12:19:30 CDT 2010


Module: wine
Branch: master
Commit: 8991b214b6a60ccd52c4cf493c0486a8e3728d8f
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=8991b214b6a60ccd52c4cf493c0486a8e3728d8f

Author: Christian Costa <titan.costa at wanadoo.fr>
Date:   Mon Mar  8 08:56:28 2010 +0100

d3dx9: Fix typo in ID3DXConstantTable_SetMatrixTranspose macro.

---

 include/d3dx9shader.h |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/include/d3dx9shader.h b/include/d3dx9shader.h
index 766d4ca..371d46d 100644
--- a/include/d3dx9shader.h
+++ b/include/d3dx9shader.h
@@ -207,7 +207,7 @@ DECLARE_INTERFACE_(ID3DXConstantTable, ID3DXBuffer)
 #define ID3DXConstantTable_SetMatrix(p,a,b,c)                         (p)->SetMatrix(a,b,c)
 #define ID3DXConstantTable_SetMatrixArray(p,a,b,c,d)                  (p)->SetMatrixArray(a,b,c,d)
 #define ID3DXConstantTable_SetMatrixPointerArray(p,a,b,c,d)           (p)->SetMatrixPointerArray(a,b,c,d)
-#define ID3DXConstantTable_SetMatrixTranspose(p,a,b,c)                (p)->>SetMatrixTranspose(a,b,c)
+#define ID3DXConstantTable_SetMatrixTranspose(p,a,b,c)                (p)->SetMatrixTranspose(a,b,c)
 #define ID3DXConstantTable_SetMatrixTransposeArray(p,a,b,c,d)         (p)->SetMatrixTransposeArray(a,b,c,d)
 #define ID3DXConstantTable_SetMatrixTransposePointerArray(p,a,b,c,d)  (p)->SetMatrixTransposePointerArray(a,b,c,d)
 #endif




More information about the wine-cvs mailing list