diff --git a/core/slice/sort_private.odin b/core/slice/sort_private.odin index 1a2a24b5b..0818a7e25 100644 --- a/core/slice/sort_private.odin +++ b/core/slice/sort_private.odin @@ -40,7 +40,7 @@ _stable_sort_general :: proc(data: $T/[]$E, call: $P, $KIND: Sort_Kind) where (O } merge_rotate :: proc(data: T, call: P){ - if len(data) <= 64 { + if len(data) <= 200 { insertion_sort(data, call) return }