summaryrefslogtreecommitdiff
path: root/examples/9-patch.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/9-patch.scm
parentee17d9897cfaf382d36e2cf0a1aae3da5e2ef2f7 (diff)
math: vector: Deprecate #v syntax and remove uses of it.
Diffstat (limited to 'examples/9-patch.scm')
-rw-r--r--examples/9-patch.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/9-patch.scm b/examples/9-patch.scm
index 451f079..feb02b0 100644
--- a/examples/9-patch.scm
+++ b/examples/9-patch.scm
@@ -12,6 +12,6 @@
(define (draw alpha)
(draw-9-patch image (make-rect 192.0 192.0 256.0 96.0) #:margin 4.0)
- (draw-text "I am error." #v(200.0 266.0)))
+ (draw-text "I am error." (vec2 200.0 266.0)))
(run-game #:load load #:draw draw)