From 6e8fed68fd130150ac76d81891fe50e1410bcf50 Mon Sep 17 00:00:00 2001 From: LinlyBoi Date: Wed, 3 May 2023 00:11:56 +0300 Subject: [PATCH] removed silly comments --- src/gamedata/score_checkers.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/gamedata/score_checkers.rs b/src/gamedata/score_checkers.rs index 05fdd89..9dd25bc 100644 --- a/src/gamedata/score_checkers.rs +++ b/src/gamedata/score_checkers.rs @@ -33,14 +33,12 @@ pub fn scan( break; } current_index = dec_row(¤t_index, 1); - //current_index.0 -= 1; } Direction::UP => { if current_index.0 == board.num_rows() - 1 { break; } current_index = inc_row(¤t_index, 1); - // current_index.0 += 1; } Direction::LEFT => { if current_index.1 == 0 {