summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--super-bloom/game.scm3
1 files changed, 2 insertions, 1 deletions
diff --git a/super-bloom/game.scm b/super-bloom/game.scm
index 24895ee..5cdb6a9 100644
--- a/super-bloom/game.scm
+++ b/super-bloom/game.scm
@@ -216,10 +216,11 @@
(label (make <label>
#:name 'instructions
#:rank 99
+ #:position (vec2 0.0 140.0)
#:font monogram-font)))
(define (show-instruction str)
(set! (text label) str)
- (center-in-parent label))
+ (center-horizontal-in-parent label))
(sleep 1.0)
(attach-to scene label)
(show-instruction "move with <arrows>")