From 41bdcc3988a31a002234396a9531c5b284609872 Mon Sep 17 00:00:00 2001 From: Robbert van der Helm Date: Sat, 18 Mar 2023 23:27:57 +0100 Subject: [PATCH] Fix overlap order comment in Puberty Simulator --- plugins/puberty_simulator/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/puberty_simulator/src/lib.rs b/plugins/puberty_simulator/src/lib.rs index a68930d4..b0dbc52e 100644 --- a/plugins/puberty_simulator/src/lib.rs +++ b/plugins/puberty_simulator/src/lib.rs @@ -34,7 +34,7 @@ const MIN_OVERLAP_ORDER: usize = 2; const MIN_OVERLAP_TIMES: usize = 1 << MIN_OVERLAP_ORDER; // 4 const DEFAULT_OVERLAP_ORDER: usize = 3; #[allow(dead_code)] -const DEFAULT_OVERLAP_TIMES: usize = 1 << DEFAULT_OVERLAP_ORDER; // 4 +const DEFAULT_OVERLAP_TIMES: usize = 1 << DEFAULT_OVERLAP_ORDER; // 8 const MAX_OVERLAP_ORDER: usize = 5; #[allow(dead_code)] const MAX_OVERLAP_TIMES: usize = 1 << MAX_OVERLAP_ORDER; // 32