diff --git a/clx/image.lisp b/clx/image.lisp index 152af53f8a65114e315359545afe0d0c99836fc9..7da52180e3c10120da8afb5ba4b6b67a1abbbfad 100644 --- a/clx/image.lisp +++ b/clx/image.lisp @@ -844,7 +844,9 @@ (index-ceiling x 8)) (index+ start padded-bytes-per-line)) (y 0 (index1+ y)) - (left-bits (index-mod (index- x) 8)) + (left-bits (the array-index + (mod (the (integer #x-FFFF 0) (- x)) + 8))) (right-bits (index-mod (index- width left-bits) 8)) (middle-bits (index- width left-bits right-bits)) (middle-bytes (index-floor middle-bits 8)))