summaryrefslogtreecommitdiff
path: root/2d/texture.scm
diff options
context:
space:
mode:
Diffstat (limited to '2d/texture.scm')
-rw-r--r--2d/texture.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/2d/texture.scm b/2d/texture.scm
index 7d0f7bd..ee0490c 100644
--- a/2d/texture.scm
+++ b/2d/texture.scm
@@ -159,7 +159,7 @@ that will be rendered, in pixels."
texture))
(define* (draw-texture texture x y #:optional (color #xffffffff))
- "Renders a textured quad in GL immediate mode."
+ "Render a textured quad in GL immediate mode."
(let* ((x2 (+ x (texture-width texture)))
(y2 (+ y (texture-height texture)))
(color (rgba->gl-color color))