summaryrefslogtreecommitdiffhomepage
path: root/src/text.c
diff options
context:
space:
mode:
authorRay <[email protected]>2019-06-19 15:43:35 +0200
committerRay <[email protected]>2019-06-19 15:43:35 +0200
commit1b249ac1e15b59867c6f9af3ff628cffba0840ee (patch)
tree4e86c89898ea2548e674204332501013322ecc19 /src/text.c
parente0854696b4685737f21b0b2b973104c76c5bb8ef (diff)
downloadraylib-1b249ac1e15b59867c6f9af3ff628cffba0840ee.tar.gz
raylib-1b249ac1e15b59867c6f9af3ff628cffba0840ee.zip
Define some globals
Diffstat (limited to 'src/text.c')
-rw-r--r--src/text.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/text.c b/src/text.c
index 9a0bcb36..6b742fd2 100644
--- a/src/text.c
+++ b/src/text.c
@@ -74,7 +74,7 @@
// Global variables
//----------------------------------------------------------------------------------
#if defined(SUPPORT_DEFAULT_FONT)
-static Font defaultFont; // Default font provided by raylib
+static Font defaultFont = { 0 }; // Default font provided by raylib
// NOTE: defaultFont is loaded on InitWindow and disposed on CloseWindow [module: core]
#endif