From b66791118e260c2c7327be1e05f1ee455f6f7221 Mon Sep 17 00:00:00 2001 From: "H. Verbeet" Date: Thu, 3 May 2007 20:57:23 +0200 Subject: [PATCH] wined3d: Make the IWineD3DDeviceImpl_ColorFill TRACE a bit more useful. --- dlls/wined3d/device.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/wined3d/device.c b/dlls/wined3d/device.c index 2ad92dab009..90fbd991404 100644 --- a/dlls/wined3d/device.c +++ b/dlls/wined3d/device.c @@ -5209,7 +5209,7 @@ static HRESULT WINAPI IWineD3DDeviceImpl_ColorFill(IWineD3DDevice *iface, IWineD IWineD3DDeviceImpl *This = (IWineD3DDeviceImpl *) iface; IWineD3DSurfaceImpl *surface = (IWineD3DSurfaceImpl *) pSurface; WINEDDBLTFX BltFx; - TRACE("(%p) Colour fill Surface: %p rect: %p color: %d\n", This, pSurface, pRect, color); + TRACE("(%p) Colour fill Surface: %p rect: %p color: 0x%08x\n", This, pSurface, pRect, color); if (surface->resource.pool != WINED3DPOOL_DEFAULT && surface->resource.pool != WINED3DPOOL_SYSTEMMEM) { FIXME("call to colorfill with non WINED3DPOOL_DEFAULT or WINED3DPOOL_SYSTEMMEM surface\n");