summaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/text.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/text.c b/src/text.c
index 78c734d8..c85d27b6 100644
--- a/src/text.c
+++ b/src/text.c
@@ -93,8 +93,9 @@
// Global variables
//----------------------------------------------------------------------------------
#if defined(SUPPORT_DEFAULT_FONT)
-static Font defaultFont = { 0 }; // Default font provided by raylib
-// NOTE: defaultFont is loaded on InitWindow and disposed on CloseWindow [module: core]
+// Default font provided by raylib
+// NOTE: Default font is loaded on InitWindow() and disposed on CloseWindow() [module: core]
+static Font defaultFont = { 0 };
#endif
//----------------------------------------------------------------------------------