diff options
author | David Thompson <dthompson@member.fsf.org> | 2013-07-06 22:05:42 -0400 |
---|---|---|
committer | David Thompson <dthompson@member.fsf.org> | 2013-07-06 22:05:42 -0400 |
commit | a1da8e04d8e97ec5c74f0ac89a60dc0ba6f55ef6 (patch) | |
tree | ba2bdb6b073ab4e0be938f4b2c5e1d92a9458f54 | |
parent | 3f04eb600191e4c3ecf83590b6179eeb444e75b3 (diff) |
Fix example code in README.
-rw-r--r-- | README.org | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -24,7 +24,8 @@ (use-modules (figl gl) (2d sprite) (2d game-loop) - (2d window)) + (2d window) + (2d input)) (define window-width 800) (define window-height 600) @@ -34,7 +35,7 @@ (display key) (newline) (case key ;; Quit program when ESCAPE or Q is pressed. - ((any-equal? key (keycode escape) (keycode q) + ((any-equal? key (keycode escape) (keycode q)) (close-window) (quit)))) |