From f636a83313622d3e6e3b4dfd9013d274f6ae376a Mon Sep 17 00:00:00 2001 Message-Id: From: Mark Wooding Date: Sun, 24 Mar 2013 01:22:28 +0000 Subject: [PATCH] atoms.lisp: Don't start the game automatically. Organization: Straylight/Edgeware From: Mark Wooding Also, rename the default players. --- atoms.lisp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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 -------------------------------------------------- -- [mdw]