summaryrefslogtreecommitdiffhomepage
path: root/examples/web/text
diff options
context:
space:
mode:
authorraysan5 <[email protected]>2021-06-28 12:24:39 +0200
committerraysan5 <[email protected]>2021-06-28 12:24:39 +0200
commit957fe60d0be9b4eec4998e038734df47adc40b14 (patch)
tree4c9606da6b855fb597a6ab20d43ff3de88351efd /examples/web/text
parent7e57cdf8ad704dac6bdce051bdb9e718d83ea703 (diff)
downloadraylib.com-957fe60d0be9b4eec4998e038734df47adc40b14.tar.gz
raylib.com-957fe60d0be9b4eec4998e038734df47adc40b14.zip
Reviewed comments
Diffstat (limited to 'examples/web/text')
-rw-r--r--examples/web/text/text_raylib_fonts.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/examples/web/text/text_raylib_fonts.c b/examples/web/text/text_raylib_fonts.c
index 24022f6..6d8d61a 100644
--- a/examples/web/text/text_raylib_fonts.c
+++ b/examples/web/text/text_raylib_fonts.c
@@ -89,9 +89,7 @@ int main(void)
// De-Initialization
//--------------------------------------------------------------------------------------
-
- // SpriteFont unloading
- for (int i = 0; i < MAX_FONTS; i++) UnloadFont(fonts[i]);
+ for (int i = 0; i < MAX_FONTS; i++) UnloadFont(fonts[i]); // Fonts unloading
CloseWindow(); // Close window and OpenGL context
//--------------------------------------------------------------------------------------