diff options
author | David Thompson <dthompson@vistahigherlearning.com> | 2020-10-03 23:01:50 -0400 |
---|---|---|
committer | David Thompson <dthompson@vistahigherlearning.com> | 2020-10-03 23:11:49 -0400 |
commit | 3aaed194a553a745627d5f06f88b942b2dce2da1 (patch) | |
tree | 2c43e2e4859fc8345c6ea5fb1f193853a5945509 /examples/tetra | |
parent | 6e809066edb93ff6907cf342fd896cb554e232d6 (diff) |
Update chickadee to latest commit.
Diffstat (limited to 'examples/tetra')
-rw-r--r-- | examples/tetra/tetra.scm | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/examples/tetra/tetra.scm b/examples/tetra/tetra.scm index 5bb2ac5..b02aeea 100644 --- a/examples/tetra/tetra.scm +++ b/examples/tetra/tetra.scm @@ -24,11 +24,11 @@ (chickadee math matrix) (chickadee math rect) (chickadee math vector) - (chickadee render color) - (chickadee render font) - (chickadee render particles) - (chickadee render texture) - (chickadee render sprite) + (chickadee graphics color) + (chickadee graphics font) + (chickadee graphics particles) + (chickadee graphics texture) + (chickadee graphics sprite) (chickadee scripting) (ice-9 match) (oop goops) @@ -63,7 +63,7 @@ (define-asset atlas (load-block-atlas "images/blocks.png")) (define-asset star (load-image "images/star.png")) -(define-asset click-font (load-font "fonts/click.xml")) +(define-asset click-font (load-bitmap-font "fonts/click.xml")) ;;; |