From e7ae462c827b1f8ccca86f5324362130de72415c Mon Sep 17 00:00:00 2001 From: Radek Dutkiewicz Date: Thu, 21 Jan 2021 11:39:30 +0000 Subject: [PATCH] Fixed formating mistake --- src/SFML/Graphics/Font.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/SFML/Graphics/Font.cpp b/src/SFML/Graphics/Font.cpp index b5284b6a2..93b6a1216 100644 --- a/src/SFML/Graphics/Font.cpp +++ b/src/SFML/Graphics/Font.cpp @@ -397,7 +397,7 @@ float Font::getKerning(Uint32 first, Uint32 second, unsigned int characterSize, // Get the kerning vector FT_Vector kerning; kerning.x = kerning.y = 0; - if( FT_HAS_KERNING(face)) + if (FT_HAS_KERNING(face)) FT_Get_Kerning(face, index1, index2, FT_KERNING_UNFITTED, &kerning); // X advance is already in pixels for bitmap fonts