From e4f03e95bca2297f96c59e67cc2a455b0fa847f4 Mon Sep 17 00:00:00 2001 From: Amine Khaldi Date: Fri, 29 May 2015 11:21:31 +0000 Subject: [PATCH] [WIN32K] Update FTVectorToPOINTFX to reduce diff to Wine. svn path=/trunk/; revision=67949 --- reactos/win32ss/gdi/ntgdi/freetype.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/reactos/win32ss/gdi/ntgdi/freetype.c b/reactos/win32ss/gdi/ntgdi/freetype.c index c1068140410..bb1a2157c34 100644 --- a/reactos/win32ss/gdi/ntgdi/freetype.c +++ b/reactos/win32ss/gdi/ntgdi/freetype.c @@ -1508,9 +1508,7 @@ ftGdiGlyphCacheSet( } -static -void -FTVectorToPOINTFX(FT_Vector *vec, POINTFX *pt) +static void FTVectorToPOINTFX(FT_Vector *vec, POINTFX *pt) { pt->x.value = vec->x >> 6; pt->x.fract = (vec->x & 0x3f) << 10; @@ -1518,7 +1516,6 @@ FTVectorToPOINTFX(FT_Vector *vec, POINTFX *pt) pt->y.value = vec->y >> 6; pt->y.fract = (vec->y & 0x3f) << 10; pt->y.fract |= ((pt->y.fract >> 6) | (pt->y.fract >> 12)); - return; } /*