diff options
author | David Thompson <dthompson2@worcester.edu> | 2021-09-21 08:01:23 -0400 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2021-09-21 20:17:36 -0400 |
commit | 0ce7838e4794fabfd68aab41ec8f965f83680bec (patch) | |
tree | aab246cedceac0d9b60caa41f294f793b8ba30e0 | |
parent | 34dc832afcf791ccf2d7ab9bb902664102af9843 (diff) |
Don't pass along error handler if the user didn't provide one.
-rw-r--r-- | chickadee.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chickadee.scm b/chickadee.scm index dec1670..e4afb13 100644 --- a/chickadee.scm +++ b/chickadee.scm @@ -413,7 +413,7 @@ border is disabled, otherwise it is enabled.") (load) (run-game* #:update update-sdl #:render render-sdl-opengl - #:error on-error + #:error (and error on-error) #:time elapsed-time #:update-hz update-hz))) (lambda () |