diff options
author | David Thompson <dthompson2@worcester.edu> | 2021-04-09 22:48:43 -0400 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2021-04-09 22:48:43 -0400 |
commit | eec7daa65efa74ece4390ebb46aa97515deffe69 (patch) | |
tree | d040473a743642c73ffe4acc1ffe9e005246d5c1 | |
parent | e05aa45f672eb49312449d359a9e345223741b19 (diff) |
examples: tile-map: Fix map file name.
-rw-r--r-- | examples/tile-map.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/tile-map.scm b/examples/tile-map.scm index 52d6b94..ae1342b 100644 --- a/examples/tile-map.scm +++ b/examples/tile-map.scm @@ -27,7 +27,7 @@ (define scroll-speed 6.0) (define (load) - (set! map (load-tile-map "maps/example3.tmx"))) + (set! map (load-tile-map "maps/example.tmx"))) (define (draw alpha) ;; Linearly interpolate between the current camera position and the |