summaryrefslogtreecommitdiff
path: root/examples/text.scm
diff options
context:
space:
mode:
authorDavid Thompson <dthompson2@worcester.edu>2021-09-21 20:05:17 -0400
committerDavid Thompson <dthompson2@worcester.edu>2021-09-21 20:34:43 -0400
commitb9fa5959cbd7ad512566029b202d00a443ea3f15 (patch)
tree534a60bffe5b615a1551f52617688a7776c8d589 /examples/text.scm
parentee17d9897cfaf382d36e2cf0a1aae3da5e2ef2f7 (diff)
math: vector: Deprecate #v syntax and remove uses of it.
Diffstat (limited to 'examples/text.scm')
-rw-r--r--examples/text.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/text.scm b/examples/text.scm
index dd9c83a..3d2b3b5 100644
--- a/examples/text.scm
+++ b/examples/text.scm
@@ -4,6 +4,6 @@
(define (draw alpha)
(draw-text "The quick brown fox jumps over the lazy dog.\nFive hexing wizard bots jump quickly."
- #v(140.0 240.0)))
+ (vec2 140.0 240.0)))
(run-game #:draw draw)