From: Mark Wooding Date: Sun, 24 Mar 2013 01:22:28 +0000 (+0000) Subject: atoms.lisp: Don't start the game automatically. X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~mdw/git/atoms/commitdiff_plain/f636a83313622d3e6e3b4dfd9013d274f6ae376a atoms.lisp: Don't start the game automatically. Also, rename the default players. --- diff --git a/atoms.lisp b/atoms.lisp index 3f225b3..6aeb8de 100644 --- a/atoms.lisp +++ b/atoms.lisp @@ -1157,6 +1157,8 @@ (defun start-atom-game (&rest initargs) (setf *window* (apply #'make-instance 'atom-game-window initargs)) (gtk:widget-show-all *window*)) -(start-atom-game :width 7 :players (list "Mark" "Vicky")) +#+debug +(start-atom-game :width 7 + :players '("Alice" "Bob")) ;;;----- That's all, folks --------------------------------------------------