From: Kevin M. Rosenberg Date: Sat, 30 Apr 2005 10:10:29 +0000 (+0000) Subject: r10501: fix allegro X-Git-Tag: debian-1.0.14-3~10 X-Git-Url: http://git.kpe.io/?p=reversi.git;a=commitdiff_plain;h=039918164c7320373263f8d9d6eca3e68f1593dd r10501: fix allegro --- diff --git a/base.lisp b/base.lisp index 2987b1d..a6a7946 100644 --- a/base.lisp +++ b/base.lisp @@ -325,16 +325,9 @@ (loop for move in all-squares when (legal-p move player board) collect move)) -#-allegro (defun replace-board (to from) (replace to from)) -#+allegro -(defun replace-board (to from) - (declare (type board to from)) - (ff::fslot-memory-copy to 0 400 from) - to) - (defvar *ply-boards* (apply #'vector (loop repeat 40 collect (initial-board))))