summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Thompson <dthompson2@worcester.edu>2014-11-30 17:57:57 -0500
committerDavid Thompson <dthompson2@worcester.edu>2014-11-30 17:57:57 -0500
commit5fd693957d637fc1c38d109109b6587b3453b984 (patch)
tree498846c85d83142be83238d9874ccda2a12ac190
parent6df77db1f65ba4f844a378c512634828b12d78a8 (diff)
math: tween: Replace let* with let in ease-reflect.
* sly/math/tween.scm (ease-reflect): Use let instead of let*.
-rw-r--r--sly/math/tween.scm2
1 files changed, 1 insertions, 1 deletions
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)