summaryrefslogtreecommitdiff
path: root/src/main/game/cell.c
diff options
context:
space:
mode:
authorAlessandro Iezzi <aiezzi@alessandroiezzi.it>2025-05-22 18:04:51 +0200
committerAlessandro Iezzi <aiezzi@alessandroiezzi.it>2025-05-22 18:04:51 +0200
commitcec27feccd1d3232ceae2bf284f66071d36cc96a (patch)
tree26556a4b6a4b6123bdf4bb06edb5c9e815528b9e /src/main/game/cell.c
parent9f4a0889287186907332c0186b15802297d807f3 (diff)
downloadtris-cec27feccd1d3232ceae2bf284f66071d36cc96a.tar.gz
tris-cec27feccd1d3232ceae2bf284f66071d36cc96a.zip
Remove the rendering of circles from the Engine
Diffstat (limited to 'src/main/game/cell.c')
-rw-r--r--src/main/game/cell.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/main/game/cell.c b/src/main/game/cell.c
index e8322ff..cf5c11c 100644
--- a/src/main/game/cell.c
+++ b/src/main/game/cell.c
@@ -51,6 +51,7 @@ cell_new(float left, float right, float top, float bottom)
cell->cy = (cell->top + cell->bottom) / 2;
cell->sign = '\0';
+ cell->shape = NULL;
return cell;
}