diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2021-03-15 22:11:17 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2021-03-15 22:11:17 -0700 |
commit | 697f1e7516d5528a99c64fe94a73d4663d0f0d2a (patch) | |
tree | 5952c553ad3bbc9ed8cdbbb7d88065dfbf384676 | |
parent | 2998866b88f5f946010c07d2ede6eba8e389da6b (diff) | |
download | mu-697f1e7516d5528a99c64fe94a73d4663d0f0d2a.tar.gz |
.
-rw-r--r-- | life.mu | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/life.mu b/life.mu index da16ff4b..c93a8afb 100644 --- a/life.mu +++ b/life.mu @@ -240,7 +240,7 @@ fn main { var key/eax: byte <- read-key 0/keyboard compare key, 0 #? loop-if-= # press key to step - break-if-!= # press key to quit + break-if-!= # press key to quit # comment this out to run under bochs; I'm not sure why there's a newline in the keyboard buffer # iter: grid1 -> grid2 step grid1, grid2 render grid2 |