summaryrefslogtreecommitdiff
path: root/starling/node.scm
diff options
context:
space:
mode:
authorDavid Thompson <dthompson2@worcester.edu>2018-08-26 09:38:14 -0400
committerDavid Thompson <dthompson2@worcester.edu>2018-08-26 09:40:11 -0400
commit78f66fa3ae49181ceb0574d57eac63bd603398d9 (patch)
treeda3d7d25a008ef9085e94fb806dea75b320b3e9a /starling/node.scm
parentc64811b5430f29c15d1d9737a9a34aec80ea27a9 (diff)
Fix rendering.
Diffstat (limited to 'starling/node.scm')
-rw-r--r--starling/node.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/starling/node.scm b/starling/node.scm
index 00e24c6..7b0db3b 100644
--- a/starling/node.scm
+++ b/starling/node.scm
@@ -98,7 +98,7 @@ the next update represented as a ratio in the range [0, 1]."
ALPHA is the distance between the previous update and the next update
represented as a ratio in the range [0, 1]."
(render node alpha)
- (for-each-child (lambda (child) (render child alpha)) node))
+ (for-each-child (lambda (child) (render* child alpha)) node))
(define-method (on-boot (node <node>))
"Perform initialization tasks for NODE."