X-Git-Url: https://git.jsancho.org/?a=blobdiff_plain;f=gacela_tetris.lisp;h=6b4320f661f0e808275793feeb55457e1b57ac03;hb=b1bda2479eebac341086054f217e20faadb7f7a7;hp=95268fc0c9efcf728aaaa9cd6cd3a74253d3e49a;hpb=c2771be74a6564012fe0e4493322fa007af2af1a;p=gacela.git diff --git a/gacela_tetris.lisp b/gacela_tetris.lisp index 95268fc..6b4320f 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)) @@ -128,7 +128,7 @@ (setq tetramine next x 6 y 0) (setq next (random-tetramine))) (t (incf y) (start-timer timer))))) - + (draw-color '(0.8 0.8 0.8)) (funcall background) (translate -288 218) (draw-grid (join-grids tetramine grid x y))