summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--chickadee/render/texture.scm3
1 files changed, 2 insertions, 1 deletions
diff --git a/chickadee/render/texture.scm b/chickadee/render/texture.scm
index 11785f0..bdb5030 100644
--- a/chickadee/render/texture.scm
+++ b/chickadee/render/texture.scm
@@ -84,7 +84,8 @@
(set-record-type-printer! <texture>
(lambda (texture port)
(format port
- "#<texture region?: ~a x: ~d y: ~d width: ~d height: ~d min-filter: ~a mag-filter: ~a wrap-s: ~a wrap-t: ~a>"
+ "#<texture id: ~d region?: ~a x: ~d y: ~d width: ~d height: ~d min-filter: ~a mag-filter: ~a wrap-s: ~a wrap-t: ~a>"
+ (texture-id texture)
(texture-region? texture)
(texture-x texture)
(texture-y texture)