Skip to content
Snippets Groups Projects
Commit ab75b89a authored by Gerald Pfeifer's avatar Gerald Pfeifer Committed by Alexandre Julliard
Browse files

Fixed some incorrect format strings.

parent 6cf9ac86
No related branches found
No related tags found
No related merge requests found
......@@ -450,12 +450,12 @@ Main_DirectDrawSurface_GetAttachedSurface(LPDIRECTDRAWSURFACE7 iface,
IDirectDrawSurfaceImpl* surf;
IDirectDrawSurfaceImpl* found = NULL;
TRACE("(%p)->Looking for caps: %x,%x,%x,%x output: %p\n",This,pCaps->dwCaps, pCaps->dwCaps2,
TRACE("(%p)->Looking for caps: %lx,%lx,%lx,%lx output: %p\n",This,pCaps->dwCaps, pCaps->dwCaps2,
pCaps->dwCaps3, pCaps->dwCaps4, ppSurface);
for (surf = This->attached; surf != NULL; surf = surf->next_attached)
{
TRACE("Surface: (%p) caps: %x,%x,%x,%x \n",surf ,
TRACE("Surface: (%p) caps: %lx,%lx,%lx,%lx \n",surf ,
surf->surface_desc.ddsCaps.dwCaps,
surf->surface_desc.ddsCaps.dwCaps2,
surf->surface_desc.ddsCaps.dwCaps3,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment