fix example 'tilt-sensor'

This commit is contained in:
pls.153 2022-04-15 11:28:35 +02:00
parent 15fc8c062a
commit 68041b4b8d
2 changed files with 61 additions and 1 deletions

View file

@ -51,7 +51,7 @@
(set-visible x y (aref *maze* x y)))))
(defun new-maze ()
(setf *maze* (make-array (list *width* *height*)
(setf *maze* (make-array (list (1+ *width*) (1+ *height*))
:initial-element t))
(display-maze)
(qlater 'generate-maze))