From 2d644f34f667c3bfd157d5ae64d263f1c49b22f5 Mon Sep 17 00:00:00 2001 From: Theis Pieter Hollebeek Date: Tue, 4 Mar 2025 10:30:43 +0100 Subject: [PATCH] increase piece width --- src/game.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/game.rs b/src/game.rs index fea0404..29cc051 100644 --- a/src/game.rs +++ b/src/game.rs @@ -11,7 +11,7 @@ pub struct CurrentTetromino { impl CurrentTetromino { fn new(tetromino: Tetromino) -> Self { - const PIECE_WIDTH: i8 = 2; + const PIECE_WIDTH: i8 = 4; Self { tetromino, direction: Direction::Up,