diff options
| author | Ray <raysan5@gmail.com> | 2018-06-30 19:58:44 +0200 |
|---|---|---|
| committer | Ray <raysan5@gmail.com> | 2018-06-30 19:58:44 +0200 |
| commit | afe81d94cebd0f803327743c867a38b1dceffe76 (patch) | |
| tree | cdab986afa43a7530f75357482580987279005fb /examples | |
| parent | 64207b11c07649f034631a3d6fa1916619dcb425 (diff) | |
| download | raylib-afe81d94cebd0f803327743c867a38b1dceffe76.tar.gz raylib-afe81d94cebd0f803327743c867a38b1dceffe76.zip | |
Re-added: LoadFontEx()
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 0a939b8d..78d25c14 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, 0, 0); + Font font = LoadFontEx("resources/KAISG.ttf", 64, 95, 0); Image parrots = LoadImage("resources/parrots.png"); // Load image in CPU memory (RAM) |
