From 044a3a3bbfef256513c170c92872800d0f51c74d Mon Sep 17 00:00:00 2001 From: Sergio Valor Date: Fri, 22 May 2026 18:56:24 +0200 Subject: [PATCH] tweak(playfield): subdivisions de 5 a 4 a la subgraella --- source/core/defaults/playfield.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/core/defaults/playfield.hpp b/source/core/defaults/playfield.hpp index 87332e4..e8b572e 100644 --- a/source/core/defaults/playfield.hpp +++ b/source/core/defaults/playfield.hpp @@ -8,7 +8,7 @@ namespace Defaults::Playfield { // Estructura de la graella (cel·les omplen tota la PLAYAREA) constexpr int COLUMNS = 16; // cell_w = PLAYAREA.w / 16 constexpr int ROWS = 8; // cell_h = PLAYAREA.h / 8 - constexpr int SUBDIVISIONS = 5; // cada cel·la principal es divideix en N subcel·les + constexpr int SUBDIVISIONS = 4; // cada cel·la principal es divideix en N subcel·les // Brillo respecte al color global (border = 1.0) constexpr float GRID_BRIGHTNESS = 0.15F;