Merge branch 'raysan5:master' into master

This commit is contained in:
RealDoigt 2023-02-24 12:32:00 -05:00 committed by GitHub
commit 824f57d66b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -6996,7 +6996,7 @@ static void ExportAutomationEvents(const char *fileName)
// Save as binary // Save as binary
/* /*
FILE *repFile = fopen(fileName, "wb"); FILE *repFile = fopen(fileName, "wb");
fwrite(fileId, 4, 1, repFile); fwrite(fileId, sizeof(unsigned char), 4, repFile);
fwrite(&eventCount, sizeof(int), 1, repFile); fwrite(&eventCount, sizeof(int), 1, repFile);
fwrite(events, sizeof(AutomationEvent), eventCount, repFile); fwrite(events, sizeof(AutomationEvent), eventCount, repFile);
fclose(repFile); fclose(repFile);