summaryrefslogtreecommitdiff
path: root/easing.lisp
diff options
context:
space:
mode:
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)