From b4bcfb7929ca87d59a35719c43b34d64ecaec9a0 Mon Sep 17 00:00:00 2001 From: Matthew Date: Tue, 2 Sep 2025 07:08:11 +1000 Subject: [PATCH] set inputs list to null --- platform.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform.d b/platform.d index d496a15..c731f54 100644 --- a/platform.d +++ b/platform.d @@ -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); }