set inputs list to null

This commit is contained in:
Matthew 2025-09-02 07:08:11 +10:00
parent ad1b167e2b
commit b4bcfb7929

View File

@ -83,7 +83,7 @@ struct Inputs
void
ResetInputs(Inputs* inputs)
{
inputs.list.first = inputs.list.last;
inputs.list.first = inputs.list.last = null;
Reset(&inputs.arena);
}