Skip to content

Commit

Permalink
fix clippy issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Razaekel committed May 19, 2024
1 parent 3263897 commit 14be968
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/noise_fns/generators/fractals.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ where
for x in 0..octaves {
let source = Source::default();
let mut seed = seed;
seed[0] = seed[0] + x as u8;
seed[0] += x as u8;
sources.push(source.set_seed(seed));
}
sources
Expand Down

0 comments on commit 14be968

Please # to comment.