X-Git-Url: https://git.jsancho.org/?a=blobdiff_plain;f=gacela_tetris.lisp;h=200c4faa5e56316a30f1e22b0c59cd82fa74ad3a;hb=e5735ab84c379b88a404c9d6d9fd4784e55260ea;hp=95268fc0c9efcf728aaaa9cd6cd3a74253d3e49a;hpb=c2771be74a6564012fe0e4493322fa007af2af1a;p=gacela.git diff --git a/gacela_tetris.lisp b/gacela_tetris.lisp index 95268fc..200c4fa 100644 --- a/gacela_tetris.lisp +++ b/gacela_tetris.lisp @@ -48,7 +48,7 @@ (defun draw-cell (cell) (cond ((null cell) nil) - (t (draw-color cell) (draw-square :size 20)))) + (t (with-color cell (draw-square :size 20))))) (defun draw-row (row) (mapcar (lambda (cell) (draw-cell cell) (translate 23 0)) row))