From 0f23a894e51fe11cecb6fd762a6360224717912c Mon Sep 17 00:00:00 2001 From: Oxore Date: Sat, 9 Dec 2017 11:18:57 +0300 Subject: Extend playfield to 22, change game over condition, shrink fld from 25 to 22 --- include/common.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include/common.h') diff --git a/include/common.h b/include/common.h index 4452bf0..49c15d3 100644 --- a/include/common.h +++ b/include/common.h @@ -28,7 +28,7 @@ typedef struct Shape { char c[4][4]; // array of logic shape cells sfRectangleShape *p[4][4]; // array of physical shape cells sfVector2f cSize; // shape rectangles size variable x/y -} Shape; +} Shape; typedef struct Field { sfVector2i pos; @@ -38,7 +38,7 @@ typedef struct Field { int cOutThick; // Field rectangles outline thickness sfVector2f cSize; // shape rectangles size variable x/y sfVector2i size; -} Field; +} Field; typedef struct Window { sfVideoMode mode; -- cgit v1.2.3