diff options
author | Oxore <oxore@protonmail.com> | 2017-06-20 23:47:31 +0700 |
---|---|---|
committer | Oxore <oxore@protonmail.com> | 2017-06-20 23:47:31 +0700 |
commit | e68b212c03c03a25cb220d8dec7366fee15d21ab (patch) | |
tree | 756cfc1b47c8e1c1a787ecd1e3869a1ff4ac6f51 /src/include | |
parent | 52841e735953c642588a33830f0bb4245d08d28e (diff) |
gmeover procedure added; minor refactoring
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/common.h | 2 | ||||
-rw-r--r-- | src/include/functions.h | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/src/include/common.h b/src/include/common.h index 4db5941..b61cc5f 100644 --- a/src/include/common.h +++ b/src/include/common.h @@ -17,7 +17,7 @@ struct tCell { uint8_t a; // active/empty state of cell sfColor fColor; // fill color }; -struct tCell fldCAtt[20][10];// fld cells attributes +struct tCell fldCAtt[25][10];// fld cells attributes /* diff --git a/src/include/functions.h b/src/include/functions.h index cb5bf09..251e230 100644 --- a/src/include/functions.h +++ b/src/include/functions.h @@ -20,5 +20,6 @@ void colorizeFld(); void colorizeActiSh(); void menuTick(); void colorizeRandom(); +void gameover(); #endif |