summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--starling/node.scm4
1 files changed, 2 insertions, 2 deletions
diff --git a/starling/node.scm b/starling/node.scm
index efb3c12..101887e 100644
--- a/starling/node.scm
+++ b/starling/node.scm
@@ -127,8 +127,8 @@ represented as a ratio in the range [0, 1]."
(define-method (boot (node <node>))
"Prepare NODE to enter the game world for the first time."
- (on-boot node)
- (set! (booted? node) #t))
+ (set! (booted? node) #t)
+ (on-boot node))
(define-method (activate (node <node>))
"Mark NODE and all of its children as active."