Skip to content

Commit 6a693cf

Browse files
author
gideons
committed
Fix logging format for automation event capacity warning
1 parent 66bb527 commit 6a693cf

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/rcore.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3608,7 +3608,7 @@ AutomationEventList LoadAutomationEventList(const char *fileName)
36083608

36093609
counter++;
36103610
}
3611-
else TRACELOG(LOG_WARNING, "AUTOMATION: Event goes beyond automated list capacity (MAX: %i): %s", buffer, list.capacity);
3611+
else TRACELOG(LOG_WARNING, "AUTOMATION: Event goes beyond automated list capacity (MAX: %u): %s", list.capacity, buffer);
36123612
} break;
36133613
default: break;
36143614
}

0 commit comments

Comments
 (0)