summaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorraysan5 <[email protected]>2020-05-07 13:39:41 +0200
committerraysan5 <[email protected]>2020-05-07 13:39:41 +0200
commit6fa6757a8bf90d4b2fd0ce82dace7c7223635efa (patch)
tree0d647a0a501a7820e3f6aaa403c9339ee2257e73 /src
parentf6ca045735dc5a3da1c329434503ec37df940171 (diff)
downloadraylib-6fa6757a8bf90d4b2fd0ce82dace7c7223635efa.tar.gz
raylib-6fa6757a8bf90d4b2fd0ce82dace7c7223635efa.zip
Comment tweak
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
//----------------------------------------------------------------------------------