On Mon, 25 May 2009 19:15:26 -0700, Elliott Slaughter  
<[email protected]> wrote:

> It appears to be dying somewhere in the video subsystem initialization...
>
> This works:
>
> (defun test ()
>   (sdl:init-sdl)
>   (sdl:quit-sdl)
>   (quit))
>
> This gets the same error:
>
> (defun test ()
>   (sdl:init-sdl)
>   (sdl:init-subsystems)
>   (sdl:quit-sdl)
>   (quit))
>
> Thoughts? Further tests?
>

Could you try the following?

(defun test ()
   (sdl:init-sdl :flags '(SDL-INIT-VIDEO))
   (sdl:quit-sdl)
   (quit))

- Luke
_______________________________________________
application-builder mailing list
[email protected]
http://www.lispniks.com/mailman/listinfo/application-builder

Reply via email to