From 49767ecbe7dedaf8061a20e704e80711c2c53855 Mon Sep 17 00:00:00 2001 From: Camden Dixie O'Brien Date: Thu, 29 May 2025 01:14:30 +0100 Subject: [PATCH] Remove default width and height in graphics-context --- drawing.lisp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drawing.lisp b/drawing.lisp index 1977fbc..06cbc33 100644 --- a/drawing.lisp +++ b/drawing.lisp @@ -73,8 +73,8 @@ (defclass graphics-context () (window renderer - (width :initarg :width :initform 800) - (height :initarg :height :initform 600))) + (width :initarg :width) + (height :initarg :height))) (defmethod initialize-instance :after ((ctx graphics-context) &key) (with-slots (window renderer width height) ctx