Skip to content

Commit

Permalink
tweak logging
Browse files Browse the repository at this point in the history
  • Loading branch information
FunkyFr3sh committed Dec 23, 2024
1 parent 85a0cbc commit 658089c
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/ddsurface.c
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ HRESULT dds_Blt(
{
if (This->bpp == 24)
{
TRACE_EXT(" NOT_IMPLEMENTED This->bpp=%u, dwFillColor=%u\n", This->bpp, lpDDBltFx->dwFillColor);
TRACE_EXT(" NOT_IMPLEMENTED This->bpp=%u, dwFillColor=%08X\n", This->bpp, lpDDBltFx->dwFillColor);
}

blt_colorfill(
Expand Down Expand Up @@ -1317,7 +1317,6 @@ HRESULT dds_SetSurfaceDesc(IDirectDrawSurfaceImpl* This, LPDDSURFACEDESC2 lpDDSD
break;
case 24:
This->bpp = 24;
TRACE(" NOT_IMPLEMENTED bpp=%u\n", lpDDSD->ddpfPixelFormat.dwRGBBitCount);
break;
case 32:
This->bpp = 32;
Expand Down Expand Up @@ -1432,7 +1431,6 @@ HRESULT dd_CreateSurface(
break;
case 24:
dst_surface->bpp = 24;
TRACE(" NOT_IMPLEMENTED bpp=%u\n", lpDDSurfaceDesc->ddpfPixelFormat.dwRGBBitCount);
break;
case 32:
dst_surface->bpp = 32;
Expand Down

0 comments on commit 658089c

Please sign in to comment.