summaryrefslogtreecommitdiff
path: root/2d/font.scm
diff options
context:
space:
mode:
Diffstat (limited to '2d/font.scm')
-rw-r--r--2d/font.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/2d/font.scm b/2d/font.scm
index a9e178f..0917e66 100644
--- a/2d/font.scm
+++ b/2d/font.scm
@@ -143,7 +143,7 @@ the given position. Optional arguments are COLOR with a default of
white and ANCHOR with a default of 'top-left."
(let* ((texture (render-text font text))
(vertices (and texture (make-label-vertices texture)))
- (anchor (anchor-texture texture anchor)))
+ (anchor (if texture (anchor-texture texture anchor) null-vector2)))
(%make-label font text position anchor color texture vertices)))
(define (draw-label label)