tweak(playfield): subdivisions de 5 a 4 a la subgraella

This commit is contained in:
2026-05-22 18:56:24 +02:00
parent 49070aa843
commit 044a3a3bbf
+1 -1
View File
@@ -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;