瀏覽代碼

Merge pull request #1998 from thePHTest/ease_fix

fix ease.odin compile error from missing comma
Jeroen van Rijn 3 年之前
父節點
當前提交
4c5672119a
共有 1 個文件被更改,包括 1 次插入1 次删除
  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) {
 flux_init :: proc($T: typeid, value_capacity := 8) -> Flux_Map(T) where intrinsics.type_is_float(T) {
 	return {
 	return {
 		values = make(map[^T]Flux_Tween(T), value_capacity),
 		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),
 	}
 	}
 }
 }