Two days one door ...
[uxul-world.git] / game.lisp
index 8051f9f..5b98d6a 100755 (executable)
--- a/game.lisp
+++ b/game.lisp
@@ -11,7 +11,9 @@
   (start-game :room-function
              #'(lambda () (create-room-from-item-list item-list))))
 
-(defun start-game (&key (music nil) room-function (15-fps nil))
+(defun start-game (&key (music nil)
+                  (room-function #'make-additional-testing-room)
+                  (15-fps nil))
   "Start the Game: Call room-function for getting the room-object to
 run. Music is ignored so far. 15-fps makes only every second frame be
 drawn (for very slow computers)"
@@ -98,4 +100,4 @@ drawn (for very slow computers)"
              (draw my-anim)
              
              (sdl:update-display)
-        ))))))
\ No newline at end of file
+        ))))))