Created
January 21, 2013 05:37
-
-
Save joekarma/4583848 to your computer and use it in GitHub Desktop.
Trying to run lispbuilder-sdl from a separate thread...
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (bt:make-thread (lambda () | |
| (sdl:with-init () | |
| (sdl:window 1024 768) | |
| (sdl:with-events () | |
| (:quit-event () t) | |
| (:idle () | |
| (sdl:clear-display sdl:*black*) | |
| (sdl:update-display)))))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment