From bdf94b87a52d65406769bb0fc3e43411d3f33f2e Mon Sep 17 00:00:00 2001 From: Thomas White Date: Sun, 21 May 2023 14:25:43 +0200 Subject: Fixture library: : Fix reversed true/false for animation wheel --- guile/starlet/fixture-library/robe/dl7s.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/guile/starlet/fixture-library/robe/dl7s.scm b/guile/starlet/fixture-library/robe/dl7s.scm index b9f7b41..0f9b10d 100644 --- a/guile/starlet/fixture-library/robe/dl7s.scm +++ b/guile/starlet/fixture-library/robe/dl7s.scm @@ -194,9 +194,9 @@ (let ((ani-active (get-attr animation-wheel))) (set-chan8 20 (if ani-active - 0 (scale-to-range (get-attr animation-wheel-position) - '(-100 100) '(19 127)))) ;; 73 = stop + '(-100 100) '(19 127)) + 0)) ;; 73 = stop (set-chan8 21 (scale-to-range (get-attr animation-wheel-speed) '(100 -100) '(1 255)))) ;; 128 = stop (set-chan8 22 0) ;; Animation wheel macro: no function -- cgit v1.2.3