summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Thompson <dthompson2@worcester.edu>2022-10-10 11:28:10 -0400
committerDavid Thompson <dthompson2@worcester.edu>2022-10-10 11:28:10 -0400
commit5d994cab2d3400e9fbbc08d95043745cca70602b (patch)
treea100ac81fc6d5a91f1c1a81e16f315c83c4bde06
parent94b7c205cff23ec39402fc7a6a12e58877bd962b (diff)
Another error handling fix.
-rw-r--r--starling/kernel.scm4
1 files changed, 2 insertions, 2 deletions
diff --git a/starling/kernel.scm b/starling/kernel.scm
index 66c1788..92aef5b 100644
--- a/starling/kernel.scm
+++ b/starling/kernel.scm
@@ -373,8 +373,8 @@
(push-scene kernel (thunk)))
#:update (lambda (dt) (update-tree kernel dt))
#:render (lambda (alpha) (render-tree kernel alpha))
- #:error (lambda (stack key args)
- (on-error kernel stack key args))
+ #:error (lambda (e stack)
+ (on-error kernel e stack))
#:time elapsed-time
#:update-hz (update-hz kernel))))
(lambda ()