Skip to content

Commit

Permalink
Fix current-time for non-sbcl
Browse files Browse the repository at this point in the history
  • Loading branch information
Shinmera committed Feb 13, 2019
1 parent 27a8f86 commit 735afd8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions toolkit.lisp
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@
(+ (- s current-time-start) (+ (- s current-time-start)
(* ms (* ms
(coerce 1/1000000 'double-float))))) (coerce 1/1000000 'double-float)))))
#-sbcl (/ (get-internal-real-time) #-sbcl (* (get-internal-real-time)
internal-time-units-per-second)) (coerce (/ internal-time-units-per-second) 'double-float)))


(defmacro undefmethod (name &rest args) (defmacro undefmethod (name &rest args)
(flet ((lambda-keyword-p (symbol) (flet ((lambda-keyword-p (symbol)
Expand Down

0 comments on commit 735afd8

Please sign in to comment.