Monorepo for Aesthetic.Computer aesthetic.computer
4
fork

Configure Feed

Select the types of activity you want to include in your feed.

cl: fix color type specifier in graph struct

SBCL can't resolve cross-package struct types in defstruct :type.
Remove the type declaration — it's just an optimization hint.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

+1 -1
+1 -1
fedac/native/cl/graph.lisp
··· 6 6 "Immediate-mode 2D graphics context." 7 7 (fb nil) ; ac-native.framebuffer:framebuffer 8 8 (screen nil) ; ac-native.framebuffer:framebuffer 9 - (ink-color (make-color :r 255 :g 255 :b 255 :a 255) :type color)) 9 + (ink-color (make-color :r 255 :g 255 :b 255 :a 255))) 10 10 11 11 (defun graph-wipe (g color) 12 12 "Clear the screen with COLOR."