diff options
| author | Antonis Geralis <[email protected]> | 2023-12-23 13:14:39 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-12-23 12:14:39 +0100 |
| commit | 7ca95512d876c47864f066aa5e90151a48290892 (patch) | |
| tree | 21c99e438bc28615d487f74e3f30b312563608b8 /examples | |
| parent | efe3510a9a2863afc48c50d38679c0d2ef1929d4 (diff) | |
| download | raylib-7ca95512d876c47864f066aa5e90151a48290892.tar.gz raylib-7ca95512d876c47864f066aa5e90151a48290892.zip | |
Review UnloadAutomationEventList (#3658)
* Review UnloadAutomationEventList
* Update raylib.h
* Update rcore.c
* Update core_automation_events.c
* Fix mistake
Diffstat (limited to 'examples')
| -rw-r--r-- | examples/core/core_automation_events.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/core/core_automation_events.c b/examples/core/core_automation_events.c index b58d572b..319b013b 100644 --- a/examples/core/core_automation_events.c +++ b/examples/core/core_automation_events.c @@ -98,7 +98,7 @@ int main(void) // Supports loading .rgs style files (text or binary) and .png style palette images if (IsFileExtension(droppedFiles.paths[0], ".txt;.rae")) { - UnloadAutomationEventList(&aelist); + UnloadAutomationEventList(aelist); aelist = LoadAutomationEventList(droppedFiles.paths[0]); eventRecording = false; |
