cards: Win64 printf format warning fixes.
This commit is contained in:
parent
6520ee04c8
commit
9f725a2719
|
@ -5,7 +5,6 @@ VPATH = @srcdir@
|
||||||
MODULE = cards.dll
|
MODULE = cards.dll
|
||||||
IMPORTLIB = libcards.$(IMPLIBEXT)
|
IMPORTLIB = libcards.$(IMPLIBEXT)
|
||||||
IMPORTS = user32 gdi32 kernel32
|
IMPORTS = user32 gdi32 kernel32
|
||||||
EXTRADEFS = -DWINE_NO_LONG_AS_INT
|
|
||||||
|
|
||||||
C_SRCS = \
|
C_SRCS = \
|
||||||
cards.c
|
cards.c
|
||||||
|
|
|
@ -94,7 +94,7 @@ BOOL WINAPI cdtDrawExt(HDC hdc, int x, int y, int dx, int dy, int card, int mode
|
||||||
BOOL eraseFlag = FALSE;
|
BOOL eraseFlag = FALSE;
|
||||||
BOOL drawFlag = TRUE;
|
BOOL drawFlag = TRUE;
|
||||||
|
|
||||||
TRACE("(%p, %d, %d, %d, %d, %d, %d, %ld)\n", hdc, x, y, dx, dy, card, mode, color);
|
TRACE("(%p, %d, %d, %d, %d, %d, %d, %d)\n", hdc, x, y, dx, dy, card, mode, color);
|
||||||
|
|
||||||
roundCornersFlag = !(mode & MODEFLAG_DONT_ROUND_CORNERS) &&
|
roundCornersFlag = !(mode & MODEFLAG_DONT_ROUND_CORNERS) &&
|
||||||
(dx == cardWidth) && (dy == cardHeight);
|
(dx == cardWidth) && (dy == cardHeight);
|
||||||
|
@ -243,7 +243,7 @@ BOOL WINAPI cdtDrawExt(HDC hdc, int x, int y, int dx, int dy, int card, int mode
|
||||||
*/
|
*/
|
||||||
BOOL WINAPI cdtDraw(HDC hdc, int x, int y, int card, int mode, DWORD color)
|
BOOL WINAPI cdtDraw(HDC hdc, int x, int y, int card, int mode, DWORD color)
|
||||||
{
|
{
|
||||||
TRACE("(%p, %d, %d, %d, %d, %ld)\n", hdc, x, y, card, mode, color);
|
TRACE("(%p, %d, %d, %d, %d, %d)\n", hdc, x, y, card, mode, color);
|
||||||
|
|
||||||
return cdtDrawExt(hdc, x, y, cardWidth, cardHeight, card, mode, color);
|
return cdtDrawExt(hdc, x, y, cardWidth, cardHeight, card, mode, color);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue