Jason Green : wined3d: Spelling fixes and downgrade a FIXME to a TRACE.

Alexandre Julliard julliard at wine.codeweavers.com
Wed Apr 12 04:52:05 CDT 2006


Module: wine
Branch: refs/heads/master
Commit: be10a6a0992499e9c325bfc8dda832928b7363a2
URL:    http://source.winehq.org/git/?p=wine.git;a=commit;h=be10a6a0992499e9c325bfc8dda832928b7363a2

Author: Jason Green <jave27 at gmail.com>
Date:   Tue Apr 11 19:25:42 2006 -0400

wined3d: Spelling fixes and downgrade a FIXME to a TRACE.

---

 dlls/wined3d/vertexdeclaration.c |   10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/dlls/wined3d/vertexdeclaration.c b/dlls/wined3d/vertexdeclaration.c
index 78c07c5..8db4288 100644
--- a/dlls/wined3d/vertexdeclaration.c
+++ b/dlls/wined3d/vertexdeclaration.c
@@ -462,7 +462,7 @@ static HRESULT WINAPI IWineD3DVertexDecl
     /* The Incredibles and Teenage Mutant Ninja Turtles require this in d3d9 for NumElements == 0,
     TODO: this needs to be tested against windows */
     if(*pSizeOfData == 0) {
-        TRACE("(%p) : Requested the vertex declaration without specefying the size of the return buffer\n", This);
+        TRACE("(%p) : Requested the vertex declaration without specifying the size of the return buffer\n", This);
         *pSizeOfData = This->declaration8Length;
         memcpy(pData, This->pDeclaration8, This->declaration8Length);
         return WINED3D_OK;
@@ -510,7 +510,7 @@ HRESULT WINAPI IWineD3DVertexDeclaration
         hr = IWineD3DVertexDeclarationImpl_GetDeclaration9(iface, (D3DVERTEXELEMENT9 *)pData, pSize);
     break;
     default:
-        FIXME("(%p)  : Unsupport DirectX version %u\n", This, ((IWineD3DImpl *)This->wineD3DDevice->wineD3D)->dxVersion);
+        FIXME("(%p)  : Unsupported DirectX version %u\n", This, ((IWineD3DImpl *)This->wineD3DDevice->wineD3D)->dxVersion);
     break;
     }
     return hr;
@@ -523,15 +523,15 @@ HRESULT WINAPI IWineD3DVertexDeclaration
     TRACE("(%p) : d3d version %d\n", This, ((IWineD3DImpl *)This->wineD3DDevice->wineD3D)->dxVersion);
     switch (((IWineD3DImpl *)This->wineD3DDevice->wineD3D)->dxVersion) {
     case 8:
-        TRACE("Parsing declatation 8\n");
+        TRACE("Parsing declaration 8\n");
         hr = IWineD3DVertexDeclarationImpl_ParseDeclaration8(iface, (CONST DWORD *)pDecl);
     break;
     case 9:
-        FIXME("Parsing declatation 9\n");
+        TRACE("Parsing declaration 9\n");
         hr = IWineD3DVertexDeclarationImpl_ParseDeclaration9(iface, (CONST D3DVERTEXELEMENT9 *)pDecl);
     break;
     default:
-        FIXME("(%p)  : Unsupport DirectX version %u\n", This, ((IWineD3DImpl *)This->wineD3DDevice->wineD3D)->dxVersion);
+        FIXME("(%p)  : Unsupported DirectX version %u\n", This, ((IWineD3DImpl *)This->wineD3DDevice->wineD3D)->dxVersion);
     break;
     }
     TRACE("Returning\n");




More information about the wine-cvs mailing list