summaryrefslogtreecommitdiff
path: root/chickadee.scm
diff options
context:
space:
mode:
Diffstat (limited to 'chickadee.scm')
-rw-r--r--chickadee.scm4
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.