From 107214fa23ca509c1634aa4dec58f0858373ceb9 Mon Sep 17 00:00:00 2001 From: Amy Wilder <74995093+AmityWilder@users.noreply.github.com> Date: Tue, 25 Mar 2025 17:44:10 -0400 Subject: [PATCH] Replace `RL_FREE` with `RAYGUI_FREE` (#479) --- src/raygui.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/raygui.h b/src/raygui.h index 39908db..d3a4f03 100644 --- a/src/raygui.h +++ b/src/raygui.h @@ -4443,8 +4443,8 @@ void GuiLoadStyleDefault(void) { // Unload previous font texture UnloadTexture(guiFont.texture); - RL_FREE(guiFont.recs); - RL_FREE(guiFont.glyphs); + RAYGUI_FREE(guiFont.recs); + RAYGUI_FREE(guiFont.glyphs); guiFont.recs = NULL; guiFont.glyphs = NULL;