From ff7593f5e6ee131eefe5d1e793626fe05a9513b1 Mon Sep 17 00:00:00 2001 From: dec05eba Date: Wed, 17 Nov 2021 11:40:54 +0100 Subject: Readd kerning --- src/graphics/Font.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/graphics/Font.cpp b/src/graphics/Font.cpp index b3ef54c..535daae 100644 --- a/src/graphics/Font.cpp +++ b/src/graphics/Font.cpp @@ -28,7 +28,7 @@ namespace mgl { return font_glyph; } - int Font::get_kerning(uint32_t prev_codepoint, uint32_t codepoint) { + float Font::get_kerning(uint32_t prev_codepoint, uint32_t codepoint) { return mgl_font_get_kerning(&font, prev_codepoint, codepoint); } -- cgit v1.2.3