Browse Source

fix ease.odin compile error from missing comma

Phil 3 years ago
parent
commit
8482f943ea
1 changed files with 1 additions and 1 deletions
  1. 1 1
      core/math/ease/ease.odin

+ 1 - 1
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),
 	}
 }