From 7aceceb4670c5cce87bd42133f444371875b4f63 Mon Sep 17 00:00:00 2001 From: GideonSerf Date: Fri, 17 Jul 2026 20:31:26 +0200 Subject: [PATCH] Fix logging format for automation event capacity warning (#5986) Co-authored-by: gideons --- src/rcore.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rcore.c b/src/rcore.c index 0bf8a5760..a368cabec 100644 --- a/src/rcore.c +++ b/src/rcore.c @@ -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; }