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 /examples | |
| 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 'examples')
| -rw-r--r-- | examples/textures/textures_image_text.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/textures/textures_image_text.c b/examples/textures/textures_image_text.c index fb99e827..ce91fbf2 100644 --- a/examples/textures/textures_image_text.c +++ b/examples/textures/textures_image_text.c @@ -21,7 +21,7 @@ int main() InitWindow(screenWidth, screenHeight, "raylib [texture] example - image text drawing"); // TTF Font loading with custom generation parameters - Font font = LoadFontEx("resources/KAISG.ttf", 64, 95, 0); + Font font = LoadFontEx("resources/KAISG.ttf", 64, 0, 0); Image parrots = LoadImage("resources/parrots.png"); // Load image in CPU memory (RAM) |
