diff options
Diffstat (limited to 'src/graphics')
-rw-r--r-- | src/graphics/Font.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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); } |