Review UnloadAutomationEventList (#3658)

* Review UnloadAutomationEventList

* Update raylib.h

* Update rcore.c

* Update core_automation_events.c

* Fix mistake
This commit is contained in:
Antonis Geralis
2023-12-23 13:14:39 +02:00
committed by GitHub
parent efe3510a9a
commit 7ca95512d8
3 changed files with 4 additions and 7 deletions

View File

@@ -2480,13 +2480,10 @@ AutomationEventList LoadAutomationEventList(const char *fileName)
}
// Unload automation events list from file
void UnloadAutomationEventList(AutomationEventList *list)
void UnloadAutomationEventList(AutomationEventList list)
{
#if defined(SUPPORT_AUTOMATION_EVENTS)
RL_FREE(list->events);
list->events = NULL;
list->count = 0;
list->capacity = 0;
RL_FREE(list.events);
#endif
}