summaryrefslogtreecommitdiff
path: root/conway.c
diff options
context:
space:
mode:
Diffstat (limited to 'conway.c')
-rw-r--r--conway.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/conway.c b/conway.c
index db4dd0a..0fd733b 100644
--- a/conway.c
+++ b/conway.c
@@ -18,6 +18,8 @@ for (int j=0; j< 40; j++) { \
*
*We use char because it's close enough to uint8_t w/o having to include the
* standard into library.
+ * There's a glider stored in the first 9x9 bits. We assume that everything is
+ * zero'd out
*/
char grid[80][40] = {{0,0,2},{2,0,2},{0,2,2},0};