[REACTOS] Fix warning C4146: unary minus operator applied to unsigned type, result still unsigned

This commit is contained in:
Timo Kreuzer 2019-05-26 13:37:31 +02:00
parent 64e182e429
commit 08c6d21e1f
6 changed files with 8 additions and 8 deletions

View file

@ -244,8 +244,8 @@ typedef struct
{
FONTOBJ *pfo;
PBMFD_FACE pface;
ULONG xScale;
ULONG yScale;
LONG xScale;
LONG yScale;
ULONG ulAngle;
} BMFD_FONT, *PBMFD_FONT;

View file

@ -83,7 +83,7 @@ BmfdQueryGlyphAndBitmap(
PGLYPHENTRY pge;
ULONG xSrc, ySrc, cxSrc, cySrc;
ULONG xDst, yDst, cxDst, cyDst;
ULONG xScale, yScale;
LONG xScale, yScale;
ULONG ulGlyphOffset, cjDstRow, color;
PVOID pvSrc0, pvDst0;