summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHaoran S. Diao <0@hairydiode.xyz>2019-04-01 19:38:46 -0400
committerHaoran S. Diao <0@hairydiode.xyz>2019-04-01 19:38:46 -0400
commit51476244ef31b7c2ec4710c524be4cb1cfff3559 (patch)
treef3832052bd08fae08d3591aeca057831773b1e61
parent7b6aecf53fc5b71da941af3f874e81f53cd6bb47 (diff)
more comments
-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};