summaryrefslogtreecommitdiffhomepage
path: root/src/raylib.h
diff options
context:
space:
mode:
authorraysan5 <[email protected]>2018-07-05 19:17:06 +0200
committerraysan5 <[email protected]>2018-07-05 19:17:06 +0200
commit103bc7dfc6cfcd6afc50782a85d0cd955b08bb8c (patch)
tree534d30747d721eacc156e7a781e786d9efab8405 /src/raylib.h
parentd881c732578c238bf77b8a6755fa03f61dda9d5d (diff)
downloadraylib-103bc7dfc6cfcd6afc50782a85d0cd955b08bb8c.tar.gz
raylib-103bc7dfc6cfcd6afc50782a85d0cd955b08bb8c.zip
Corrected issue with GetFontDefault()
Note for me: Replace All is NOT your friend...
Diffstat (limited to 'src/raylib.h')
-rw-r--r--src/raylib.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/raylib.h b/src/raylib.h
index deed08fb..4297e582 100644
--- a/src/raylib.h
+++ b/src/raylib.h
@@ -966,7 +966,7 @@ RLAPI void DrawTexturePro(Texture2D texture, Rectangle sourceRec, Rectangle dest
//------------------------------------------------------------------------------------
// Font loading/unloading functions
-RLAPI Font GetFontDefault()(void); // Get the default Font
+RLAPI Font GetFontDefault(void); // Get the default Font
RLAPI Font LoadFont(const char *fileName); // Load font from file into GPU memory (VRAM)
RLAPI Font LoadFontEx(const char *fileName, int fontSize, int charsCount, int *fontChars); // Load font from file with extended parameters
RLAPI CharInfo *LoadFontData(const char *fileName, int fontSize, int *fontChars, int charsCount, bool sdf); // Load font data for further use