From 5f690819e79a6e719aff1ac323392e92c61d8743 Mon Sep 17 00:00:00 2001 From: Ray Date: Mon, 14 Dec 2020 23:47:11 +0100 Subject: [PATCH] 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... --- src/raylib.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/raylib.h b/src/raylib.h index 274614947..75ed3ffbd 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