diff options
author | David Thompson <dthompson@member.fsf.org> | 2013-08-25 09:12:12 -0400 |
---|---|---|
committer | David Thompson <dthompson@member.fsf.org> | 2013-08-25 09:12:12 -0400 |
commit | b740960d681e6c0985dbdb734d6486784c9a370b (patch) | |
tree | 500eafaedd65d1a83e2a9cc7270a46c9d4b7ab45 | |
parent | cadab63998854244df9a55982369edc51e78babe (diff) |
Fix typo.
-rw-r--r-- | 2d/sprite.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/2d/sprite.scm b/2d/sprite.scm index bf2a0f6..b652f4d 100644 --- a/2d/sprite.scm +++ b/2d/sprite.scm @@ -314,7 +314,7 @@ bound." (%make-sprite-batch max-size 0 #f (make-packed-array sprite-vertex (* 4 max-size)))) (define (sprite-batch-draw . args) - "Adds a textured quad to the current zsprite batch." + "Adds a textured quad to the current sprite batch." (apply %sprite-batch-draw *sprite-batch* args)) (define* (%sprite-batch-draw batch texture x y width height origin-x origin-y |