From c21419480ce89f698da908c24564872d21e2dfb5 Mon Sep 17 00:00:00 2001 From: Quinn Date: Mon, 3 Feb 2025 13:21:00 +0100 Subject: [PATCH] make playfield width 10 columns --- src/game/game.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/game/game.h b/src/game/game.h index 5b4cd68..2f2fb5a 100644 --- a/src/game/game.h +++ b/src/game/game.h @@ -6,7 +6,7 @@ #include "tetromino/shapes.h" // stores the data used in the game -#define COLUMNS ((int8_t)16) +#define COLUMNS ((int8_t)10) #define ROWS ((int8_t)(COLUMNS * 2)) typedef struct {