diff options
| author | Ray <[email protected]> | 2020-12-14 23:47:11 +0100 |
|---|---|---|
| committer | Ray <[email protected]> | 2020-12-14 23:47:11 +0100 |
| commit | 5f690819e79a6e719aff1ac323392e92c61d8743 (patch) | |
| tree | 9a72456cf8278a3e79e8db9416a6482c7586bb77 /src | |
| parent | e69f2f0c26043934bbbfdf2f6a6b95589d5ac6c2 (diff) | |
| download | raylib-5f690819e79a6e719aff1ac323392e92c61d8743.tar.gz raylib-5f690819e79a6e719aff1ac323392e92c61d8743.zip | |
REVIEWED: Font struct, added charsPadding #1432 -WIP-
Not implemented usage of this variable yet but already setup for the future... some functions require review to consider it on drawing...
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 27461494..75ed3ffb 100644 --- a/src/raylib.h +++ b/src/raylib.h @@ -275,7 +275,7 @@ typedef struct CharInfo { typedef struct Font { int baseSize; // Base size (default chars height) int charsCount; // Number of characters - //int charsPadding; // Padding around the chars + int charsPadding; // Padding around the chars Texture2D texture; // Characters texture atlas Rectangle *recs; // Characters rectangles in texture CharInfo *chars; // Characters info data |
