From 5fd693957d637fc1c38d109109b6587b3453b984 Mon Sep 17 00:00:00 2001 From: David Thompson Date: Sun, 30 Nov 2014 17:57:57 -0500 Subject: math: tween: Replace let* with let in ease-reflect. * sly/math/tween.scm (ease-reflect): Use let instead of let*. --- sly/math/tween.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sly/math/tween.scm b/sly/math/tween.scm index 147ca37..46c1384 100644 --- a/sly/math/tween.scm +++ b/sly/math/tween.scm @@ -36,7 +36,7 @@ (modulo* alpha 1)) (define (ease-reflect alpha) - (let* ((cycle (modulo* alpha 2))) + (let ((cycle (modulo* alpha 2))) (if (< cycle 1) cycle (- 2 cycle)))) (define (ease-linear alpha) -- cgit v1.2.3