From 4fc83b269a073af053202d9b589e00ba5fa9ea88 Mon Sep 17 00:00:00 2001 From: Camden Dixie O'Brien Date: Thu, 29 May 2025 01:14:30 +0100 Subject: [PATCH] Initialise SDL properly in graphics-context --- drawing.lisp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drawing.lisp b/drawing.lisp index 06cbc33..2680410 100644 --- a/drawing.lisp +++ b/drawing.lisp @@ -78,7 +78,7 @@ (defmethod initialize-instance :after ((ctx graphics-context) &key) (with-slots (window renderer width height) ctx - (sdl2:init) + (sdl2:init :video) (setf window (sdl2:create-window :title "Simulation" :w width :h height