From 6fa6757a8bf90d4b2fd0ce82dace7c7223635efa Mon Sep 17 00:00:00 2001 From: raysan5 Date: Thu, 7 May 2020 13:39:41 +0200 Subject: [PATCH] Comment tweak --- src/text.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/text.c b/src/text.c index 78c734d81..c85d27b64 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 //----------------------------------------------------------------------------------