aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRay San <raysan5@gmail.com>2018-06-12 12:05:28 +0200
committerRay San <raysan5@gmail.com>2018-06-12 12:05:28 +0200
commit7d0e09ff4c7687853c6946466d38b0bb685b0088 (patch)
tree44b553c2c9ea5ffd16d94f91977652b141ffbdd2 /src
parentb588af5ce22691bb143dcd784858e3c331c4a1e6 (diff)
downloadraylib-7d0e09ff4c7687853c6946466d38b0bb685b0088.tar.gz
raylib-7d0e09ff4c7687853c6946466d38b0bb685b0088.zip
Corrected bug
Diffstat (limited to 'src')
-rw-r--r--src/textures.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/textures.c b/src/textures.c
index 789da14c..fe408481 100644
--- a/src/textures.c
+++ b/src/textures.c
@@ -1982,10 +1982,9 @@ Image GenImageCellular(int width, int height, int tileSize)
// Generate image: font atlas. Requires TTF as input file.
// NOTE: Generated atlas packs characters in order and rectangles are defined with magenta borders (?)
+// NOTE: Characters info data should be allocated by user for charsCount
Image GenImageFont(const char *fileName, int fontSize, int charsCount, int *fontChars, CharInfo *chars)
{
- CharInfo *chars; // Characters info (if required)
-
// TODO.
}
#endif // SUPPORT_IMAGE_GENERATION