Fix logging format for automation event capacity warning (#5986)

Co-authored-by: gideons <gse@newspacesystems.com>
This commit is contained in:
GideonSerf
2026-07-17 20:31:26 +02:00
committed by GitHub
parent 66bb527d22
commit 7aceceb467

View File

@@ -3608,7 +3608,7 @@ AutomationEventList LoadAutomationEventList(const char *fileName)
counter++;
}
else TRACELOG(LOG_WARNING, "AUTOMATION: Event goes beyond automated list capacity (MAX: %i): %s", buffer, list.capacity);
else TRACELOG(LOG_WARNING, "AUTOMATION: Event goes beyond automated list capacity (MAX: %u): %s", list.capacity, buffer);
} break;
default: break;
}