Merge pull request #573 from geoffthemedio/patch-1

Fixed Signed/Unsigned Comparison Warning
This commit is contained in:
Mikko Mononen 2020-03-20 22:14:02 +02:00 • committed by GitHub
commit 2bead03bea
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -231,7 +231,7 @@ void fons__tt_renderGlyphBitmap(FONSttFontImpl *font, unsigned char *output, int
{
FT_GlyphSlot ftGlyph = font->font->glyph;
int ftGlyphOffset = 0;
int x, y;
unsigned int x, y;
FONS_NOTUSED(outWidth);
FONS_NOTUSED(outHeight);
FONS_NOTUSED(scaleX);