removed silly comments

This commit is contained in:
LinlyBoi
2023-05-03 00:11:56 +03:00
parent e016d5f358
commit 6e8fed68fd

View File

@@ -33,14 +33,12 @@ pub fn scan(
break;
}
current_index = dec_row(&current_index, 1);
//current_index.0 -= 1;
}
Direction::UP => {
if current_index.0 == board.num_rows() - 1 {
break;
}
current_index = inc_row(&current_index, 1);
// current_index.0 += 1;
}
Direction::LEFT => {
if current_index.1 == 0 {