diff options
| author | raysan5 <[email protected]> | 2021-06-26 21:07:00 +0200 |
|---|---|---|
| committer | raysan5 <[email protected]> | 2021-06-26 21:07:00 +0200 |
| commit | 2f75657350f4377e41064c7ca2941e00e586be63 (patch) | |
| tree | 7c6113bfdd73fb69d64eafa7a5f3ce3a952be888 /src/text.c | |
| parent | 00c87953853d46ede8ac8fa8c1b2640dc941f82c (diff) | |
| download | raylib-2f75657350f4377e41064c7ca2941e00e586be63.tar.gz raylib-2f75657350f4377e41064c7ca2941e00e586be63.zip | |
WARNING: REMOVED: Some deprecated function names mapping
Some functions/values have been deprecated for long time but some mapping was kept for convenience. Some of those mappings have been removed...
Diffstat (limited to 'src/text.c')
| -rw-r--r-- | src/text.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -444,7 +444,7 @@ Font LoadFontFromImage(Image image, Color key, int firstChar) .mipmaps = 1 }; - // Create spritefont with all data parsed from image + // Create font with all data parsed from image Font font = { 0 }; font.texture = LoadTextureFromImage(fontClear); // Convert processed image to OpenGL texture @@ -1122,7 +1122,7 @@ Vector2 MeasureTextEx(Font font, const char *text, float fontSize, float spacing return vec; } -// Get index position for a unicode character on spritefont +// Get index position for a unicode character on font int GetGlyphIndex(Font font, int codepoint) { #ifndef GLYPH_NOTFOUND_CHAR_FALLBACK |
