From 26770f38fed8c45b866e63305d153a96e9ad6a95 Mon Sep 17 00:00:00 2001 From: Quinn Date: Mon, 27 Jan 2025 00:16:50 +0100 Subject: [PATCH] change column size to 16 instead of 10 --- 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 3637856..3d4335a 100644 --- a/src/game/game.h +++ b/src/game/game.h @@ -5,7 +5,7 @@ #include "../window/colour.h" // stores the data used in the game -#define COLUMNS ((uint8_t)10) +#define COLUMNS ((uint8_t)16) #define ROWS ((uint8_t)(COLUMNS * 2)) typedef struct {