Simon Watson il y a 2 ans
Parent
commit
8dcdee95d8
2 fichiers modifiés avec 4 ajouts et 4 suppressions
  1. 3 3
      clwars.lisp
  2. 1 1
      game.lisp

+ 3 - 3
clwars.lisp

@@ -1,6 +1,6 @@
-(load "ascii-assets.lisp")
-(load "structs.lisp")
-(load "game.lisp")
+(load "~/Repos/clwars/ascii-assets.lisp")
+(load "~/Repos/clwars/structs.lisp")
+(load "~/Repos/clwars/game.lisp")
 
 ;; https://stackoverflow.com/questions/4882361/which-command-could-be-used-to-clear-screen-in-clisp
 (defun cls()

+ 1 - 1
game.lisp

@@ -4,7 +4,7 @@
 
 (defun random-uniq-crew ()
   (let ((num-attr (random 10))
-	(crew-mem (make-uniq-crew-mem)))
+	(crew-mem (make-uniq-crew-mem)))))
     
 
 (defun init-game-state ()