Corrected issue with GetFontDefault()

Note for me: Replace All is NOT your friend...
This commit is contained in:
raysan5 2018-07-05 19:17:06 +02:00
parent d881c73257
commit 103bc7dfc6
6 changed files with 32 additions and 32 deletions

View file

@ -966,7 +966,7 @@ RLAPI void DrawTexturePro(Texture2D texture, Rectangle sourceRec, Rectangle dest
//------------------------------------------------------------------------------------
// Font loading/unloading functions
RLAPI Font GetFontDefault()(void); // Get the default Font
RLAPI Font GetFontDefault(void); // Get the default Font
RLAPI Font LoadFont(const char *fileName); // Load font from file into GPU memory (VRAM)
RLAPI Font LoadFontEx(const char *fileName, int fontSize, int charsCount, int *fontChars); // Load font from file with extended parameters
RLAPI CharInfo *LoadFontData(const char *fileName, int fontSize, int *fontChars, int charsCount, bool sdf); // Load font data for further use