From a03c9981af0c43fb3b8ec0f08ae37bcc32f5cb11 Mon Sep 17 00:00:00 2001 From: PupCraft Date: Mon, 8 Apr 2019 02:19:33 -0400 Subject: [PATCH] Add missing comma in with-uniform-location macro --- src/shader-dict/uniforms.lisp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shader-dict/uniforms.lisp b/src/shader-dict/uniforms.lisp index 69b58c8..1f639e4 100644 --- a/src/shader-dict/uniforms.lisp +++ b/src/shader-dict/uniforms.lisp @@ -29,7 +29,7 @@ (with-slots (id) active-program (gl:get-uniform-location id ,name))))) (unless (and ,var (or (>= ,var -1))) - (cerror "Continue" 'missing-uniform-error :name name) + (cerror "Continue" 'missing-uniform-error :name ,name) (setf ,var -1)) ,@body)))))