diff options
| author | raysan5 <[email protected]> | 2018-12-25 15:17:42 +0100 |
|---|---|---|
| committer | raysan5 <[email protected]> | 2018-12-25 15:17:42 +0100 |
| commit | 96207a8a026a629fcc3026efab96cf18e1302618 (patch) | |
| tree | 1c0d6ca8e33b08ef7aaf2ca6570b7f8f18888e54 /src/text.c | |
| parent | 1982eabe6eb1501362c62ee12052c24b0273eb13 (diff) | |
| download | raylib-96207a8a026a629fcc3026efab96cf18e1302618.tar.gz raylib-96207a8a026a629fcc3026efab96cf18e1302618.zip | |
REVIEWED: LoadFontEx()
Changed parameters order for consistency with LoadFontData() and other functions when an array is passed by parameter and array size is the following parameter.
Diffstat (limited to 'src/text.c')
| -rw-r--r-- | src/text.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -275,7 +275,7 @@ Font LoadFont(const char *fileName) Font font = { 0 }; #if defined(SUPPORT_FILEFORMAT_TTF) - if (IsFileExtension(fileName, ".ttf") || IsFileExtension(fileName, ".otf")) font = LoadFontEx(fileName, DEFAULT_TTF_FONTSIZE, DEFAULT_TTF_NUMCHARS, NULL); + if (IsFileExtension(fileName, ".ttf") || IsFileExtension(fileName, ".otf")) font = LoadFontEx(fileName, DEFAULT_TTF_FONTSIZE, NULL, DEFAULT_TTF_NUMCHARS); else #endif #if defined(SUPPORT_FILEFORMAT_FNT) @@ -301,7 +301,7 @@ Font LoadFont(const char *fileName) // Load Font from TTF font file with generation parameters // NOTE: You can pass an array with desired characters, those characters should be available in the font // if array is NULL, default char set is selected 32..126 -Font LoadFontEx(const char *fileName, int fontSize, int charsCount, int *fontChars) +Font LoadFontEx(const char *fileName, int fontSize, int *fontChars, int charsCount) { Font font = { 0 }; |
