From 8482f943eaebc266f8c2c5c9e0a564d4549678f4 Mon Sep 17 00:00:00 2001 From: Phil Date: Wed, 31 Aug 2022 14:14:06 -0700 Subject: [PATCH] fix ease.odin compile error from missing comma --- core/math/ease/ease.odin | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/math/ease/ease.odin b/core/math/ease/ease.odin index 0bd7c3641..c3917707f 100644 --- a/core/math/ease/ease.odin +++ b/core/math/ease/ease.odin @@ -356,7 +356,7 @@ Flux_Tween :: struct($T: typeid) { flux_init :: proc($T: typeid, value_capacity := 8) -> Flux_Map(T) where intrinsics.type_is_float(T) { return { values = make(map[^T]Flux_Tween(T), value_capacity), - keys_to_be_deleted = make([dynamic]^T, 0, value_capacity) + keys_to_be_deleted = make([dynamic]^T, 0, value_capacity), } }