Update falling/src/main.rs

This commit is contained in:
deadvey 2024-12-25 02:08:29 +01:00
parent bd051d24a8
commit d7e4816e05

View File

@ -112,7 +112,7 @@ fn generate_level(level_to_generate: u64, difficulty: i8, left_wall: &mut i16, r
else if i == *left_wall-1 && left_wall_change < 0 {
new_level[i as usize] = -2;
}
// If its not on the left wall, mark the space with another value (-3) which is a straight
// If it's not on the left wall, mark the space with another value (-3) which is a straight
// wall "|".
else {
new_level[i as usize] = -3;