make playfield width 10 columns

This commit is contained in:
2025-02-03 13:21:00 +01:00
parent 56d957cbb2
commit c21419480c

View File

@@ -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 {