summaryrefslogtreecommitdiff
path: root/easing.lisp
diff options
context:
space:
mode:
authorColin Okay <cbeok@protonmail.com>2020-08-12 17:42:05 -0500
committerColin Okay <cbeok@protonmail.com>2020-08-12 17:42:05 -0500
commit556bea4e18dc96d7207692076e66775e8246dc82 (patch)
tree43cf658747c278598c7b304a959ae9fff627c3b3 /easing.lisp
parentadf3fded3aa80adc2ae1d7fb9ab90ea3b157caf7 (diff)
removed dependency on my stupid lettuce lib
Diffstat (limited to 'easing.lisp')
-rw-r--r--easing.lisp2
1 files changed, 1 insertions, 1 deletions
diff --git a/easing.lisp b/easing.lisp
index ef20a30..d63a4b1 100644
--- a/easing.lisp
+++ b/easing.lisp
@@ -6,7 +6,7 @@
(defun time-frac (start duration current)
(let* ((end (+ start duration))
- (progress (max 0 (- end current))))
+ (progress (max 0 (- end current))))
(- 1.0 (/ progress duration))))
(defmacro def-ease (name &rest body)