diff options
author | David Thompson <dthompson2@worcester.edu> | 2021-04-20 15:01:19 -0400 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2021-04-20 15:01:19 -0400 |
commit | bcab7eab46974ddcf1094898e7652757b7361c7c (patch) | |
tree | 79e764f42608728950e367f1833a96d54d9431a5 | |
parent | d4d82c8f2259f368085ce4cb31a3de1751199edd (diff) |
graphics: tile-map: Fix tile-layer-ref procedure name.
-rw-r--r-- | chickadee/graphics/tile-map.scm | 2 |
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)))) |