diff --git a/src/SFML/Graphics/Font.cpp b/src/SFML/Graphics/Font.cpp index b5284b6a..93b6a121 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