diff options
-rw-r--r-- | chickadee.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/chickadee.scm b/chickadee.scm index f6894b0..386e99f 100644 --- a/chickadee.scm +++ b/chickadee.scm @@ -83,7 +83,9 @@ ;; that was spent handling the error. (if (with-error-handling error (update timestep)) (loop (time) 0) - (update-loop (- buffer timestep))) + (begin + (usleep 1) + (update-loop (- buffer timestep)))) (begin ;; We render upon every iteration of the loop, and ;; thus rendering is decoupled from updating. |