From 7a5718eb36cd1056ad081d76d22e26f01ee6fe00 Mon Sep 17 00:00:00 2001 From: Antonis Geralis <43617260+planetis-m@users.noreply.github.com> Date: Wed, 20 Dec 2023 14:12:34 +0200 Subject: [PATCH] Update rcore.c --- src/rcore.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rcore.c b/src/rcore.c index eb4dd3089..3ddf3596d 100644 --- a/src/rcore.c +++ b/src/rcore.c @@ -2483,7 +2483,7 @@ AutomationEventList LoadAutomationEventList(const char *fileName) void UnloadAutomationEventList(AutomationEventList list) { #if defined(SUPPORT_AUTOMATION_EVENTS) - RL_FREE(list->events); + RL_FREE(list.events); #endif }