diff options
Diffstat (limited to 'examples/tiled.scm')
-rw-r--r-- | examples/tiled.scm | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/examples/tiled.scm b/examples/tiled.scm index 19332bb..5ff2b7f 100644 --- a/examples/tiled.scm +++ b/examples/tiled.scm @@ -2,7 +2,6 @@ (chickadee math vector) (chickadee math rect) (chickadee render tiled) - (chickadee sdl) (ice-9 match)) (define map #f) @@ -24,9 +23,9 @@ ('q (abort-game)) (_ #t))) -(run-game/sdl #:window-width 320 - #:window-height 240 - #:window-title "tile map demo" - #:load load - #:draw draw - #:key-press key-press) +(run-game #:window-width 320 + #:window-height 240 + #:window-title "tile map demo" + #:load load + #:draw draw + #:key-press key-press) |