diff options
| author | Ray <raysan5@gmail.com> | 2018-10-10 23:44:08 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-10-10 23:44:08 +0200 |
| commit | 4a4efaa25e2dfeaf9e6cd3f6166db086641288f3 (patch) | |
| tree | e68a86a321bcfc9ce89bef84d8313bd60e90537c /src | |
| parent | f238b9ea3c6b2b380a07d37ebe82d7fcde4a1ce1 (diff) | |
| parent | ccaf462cbf4d56886372b720238ad8aa9718ad06 (diff) | |
| download | raylib-4a4efaa25e2dfeaf9e6cd3f6166db086641288f3.tar.gz raylib-4a4efaa25e2dfeaf9e6cd3f6166db086641288f3.zip | |
Merge pull request #658 from noshbar/incorrect-GenImageFontAtlas-def
GenImageFontAtlas prototype in raylib.h is incorrect.
Diffstat (limited to 'src')
| -rw-r--r-- | src/raylib.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/raylib.h b/src/raylib.h index 3bd16f00..9d870255 100644 --- a/src/raylib.h +++ b/src/raylib.h @@ -1075,7 +1075,7 @@ RLAPI Font GetFontDefault(void); 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, int type); // Load font data for further use -RLAPI Image GenImageFontAtlas(CharInfo *chars, int fontSize, int charsCount, int padding, int packMethod); // Generate image font atlas using chars info +RLAPI Image GenImageFontAtlas(CharInfo *chars, int charsCount, int fontSize, int padding, int packMethod); // Generate image font atlas using chars info RLAPI void UnloadFont(Font font); // Unload Font from GPU memory (VRAM) // Text drawing functions |
