X-Git-Url: https://git.jsancho.org/?a=blobdiff_plain;f=gacela_tetris.lisp;h=200c4faa5e56316a30f1e22b0c59cd82fa74ad3a;hb=02026932e3ecf2ff041a8a0389cf6c077df3e49d;hp=d6bf14a19f2b8606776613e36da8740efc7fdfdf;hpb=6b5631c92ca29a80af99d228b3fe346c5b5e8eee;p=gacela.git diff --git a/gacela_tetris.lisp b/gacela_tetris.lisp index d6bf14a..200c4fa 100644 --- a/gacela_tetris.lisp +++ b/gacela_tetris.lisp @@ -1,6 +1,6 @@ (in-package :gacela) -(setq *frames-per-second* 15) +(set-frames-per-second 15) (defun tetramine-i () (let ((color '(1 0 0))) @@ -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))