tdecreased default height - game-of-life - Conway's Game of Life
 (HTM) git clone git://src.adamsgaard.dk/game-of-life
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) LICENSE
       ---
 (DIR) commit e06e532934694aa38400f0935fe73fa28965d8c7
 (DIR) parent 8df6fbdf39af9ba2fd5328d41ed96d9add8cc58b
 (HTM) Author: Anders Damsgaard <anders.damsgaard@geo.au.dk>
       Date:   Sat,  8 Mar 2014 16:50:58 +0100
       
       decreased default height
       
       Diffstat:
         M main.c                              |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
 (DIR) diff --git a/main.c b/main.c
       t@@ -14,7 +14,7 @@ int main(int argc, char **argv)
            int **cells;
            int **neighbors;
            int nx = 80;
       -    int ny = 40;
       +    int ny = 30;
            int c;
            unsigned int it = 0;
            int world_is_dead = 0;