From 0c631e6b5a917f2d94669d91750e93ac8c960a0d Mon Sep 17 00:00:00 2001 From: Ray Date: Sun, 15 Jul 2018 21:24:59 +0200 Subject: [PATCH] Corrected comment --- src/raylib.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/raylib.h b/src/raylib.h index da8713a9..bc8745c6 100644 --- a/src/raylib.h +++ b/src/raylib.h @@ -1008,7 +1008,7 @@ RLAPI int MeasureText(const char *text, int fontSize); RLAPI Vector2 MeasureTextEx(Font font, const char *text, float fontSize, float spacing); // Measure string size for Font RLAPI const char *FormatText(const char *text, ...); // Formatting of text with variables to 'embed' RLAPI const char *SubText(const char *text, int position, int length); // Get a piece of a text string -RLAPI int GetGlyphIndex(Font font, int character); // Get index position for a unicode character on sprite font +RLAPI int GetGlyphIndex(Font font, int character); // Get index position for a unicode character on font //------------------------------------------------------------------------------------ // Basic 3d Shapes Drawing Functions (Module: models)