Skip to content

Commit

Permalink
Add other library dependencies, remove explicit quick loads.
Browse files Browse the repository at this point in the history
Instead of manual quick loads, we can just quickload :cl-puyopuyo
  • Loading branch information
stylewarning committed Feb 23, 2013
1 parent 4e46990 commit 5aa0e15
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
4 changes: 3 additions & 1 deletion cl-puyopuyo.asd
Expand Up @@ -6,7 +6,9 @@
:author "Your Name <your.name@example.com>"
:license "Specify license here"
:depends-on (#:lispbuilder-sdl
#:bordeaux-threads)
#:bordeaux-threads
#:lispbuilder-sdl-ttf
#:lispbuilder-sdl-gfx)
:components ((:file "package")
(:file "cl-puyopuyo")))

4 changes: 0 additions & 4 deletions cl-puyopuyo.lisp
Expand Up @@ -4,10 +4,6 @@

(in-package :cl-puyopuyo)

(ql:quickload "lispbuilder-sdl-ttf")
(ql:quickload "lispbuilder-sdl-gfx")
(ql:quickload "bordeaux-threads")

;;width/height of bitmaos is 32x32
(defconstant +puyo-width+ 32)
(defconstant +puyo-height+ 32)
Expand Down

0 comments on commit 5aa0e15

Please sign in to comment.