diff options
Diffstat (limited to 'chessboard.mu')
-rw-r--r-- | chessboard.mu | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/chessboard.mu b/chessboard.mu index c8c84eed..e5f894fa 100644 --- a/chessboard.mu +++ b/chessboard.mu @@ -149,6 +149,7 @@ recipe print-board screen:address:screen, board:address:array:address:array:char local-scope load-ingredients row:number <- copy 7 # start printing from the top of the board + space:character <- copy 32/space # print each row { done?:boolean <- lesser-than row, 0 @@ -166,7 +167,7 @@ recipe print-board screen:address:screen, board:address:array:address:array:char f:address:array:character <- index *board, col c:character <- index *f, row print screen, c - print screen, 32/space + print screen, space col <- add col, 1 loop } |