summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Thompson <dthompson2@worcester.edu>2021-04-20 15:01:19 -0400
committerDavid Thompson <dthompson2@worcester.edu>2021-04-20 15:01:19 -0400
commitbcab7eab46974ddcf1094898e7652757b7361c7c (patch)
tree79e764f42608728950e367f1833a96d54d9431a5
parentd4d82c8f2259f368085ce4cb31a3de1751199edd (diff)
graphics: tile-map: Fix tile-layer-ref procedure name.
-rw-r--r--chickadee/graphics/tile-map.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/chickadee/graphics/tile-map.scm b/chickadee/graphics/tile-map.scm
index 083d61e..04c8203 100644
--- a/chickadee/graphics/tile-map.scm
+++ b/chickadee/graphics/tile-map.scm
@@ -554,7 +554,7 @@ void main (void) {
(modulo x n)
(modulo y n))))
-(define (tile-layer-ref! layer x y)
+(define (tile-layer-ref layer x y)
(call-with-chunk layer x y
(lambda (chunk cx cy)
(chunk-ref chunk cx cy))))