X-Git-Url: https://git.jsancho.org/?a=blobdiff_plain;f=gacela_tetris.lisp;h=5435e96bfb8678bb6b651d52dcb6b3ee54a83eb3;hb=6a3d1ffb69036e6d4f1c239fd7d52f9bfc48d50c;hp=9d67a1d986950ee5bb89f26fbb973612d2c1ace4;hpb=4f2a527eb9aec9616363c098bc9974db1b5cf3b8;p=gacela.git diff --git a/gacela_tetris.lisp b/gacela_tetris.lisp index 9d67a1d..5435e96 100644 --- a/gacela_tetris.lisp +++ b/gacela_tetris.lisp @@ -119,8 +119,8 @@ (next (random-tetramine)) (timer (make-timer)) (grid (make-list 20 :initial-element (make-list 14))) - (background (draw-image-function "fondo_tetris.png")) -; (background (draw-image-function "../../nehe/lesson06/data/nehe.bmp")) + (background (load-texture "fondo_tetris.png")) +; (background (load-texture "../../nehe/lesson06/data/nehe.bmp")) (font (load-font "lazy.ttf" :size 20)) (game-over)) @@ -156,7 +156,7 @@ (cond ((collide-grids tetramine grid x y) (setq game-over t))) (setq next (random-tetramine))) (t (incf y) (start-timer timer))))) - (funcall background) + (draw-texture background) (translate -288 218) (draw-grid (join-grids tetramine grid x y)) (translate 440 440)