diff options
author | David Thompson <dthompson2@worcester.edu> | 2013-07-21 22:23:16 -0400 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2013-07-21 22:23:16 -0400 |
commit | 01055619227f81e967712f9f76ab2a36dbfea138 (patch) | |
tree | f88e16e6c640f554b61ccb13bcfcc031e66cfb87 | |
parent | 3ae0550bc73ab825a65d98eeda1c2d2431c4ecfb (diff) |
Update README.
-rw-r--r-- | README.org | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -24,8 +24,7 @@ (use-modules (figl gl) (2d sprite) (2d game-loop) - (2d window) - (2d input)) + (2d window)) (define window-width 800) (define window-height 600) @@ -35,7 +34,7 @@ (display key) (newline) (case key ;; Quit program when ESCAPE or Q is pressed. - ((any-equal? key (keycode escape) (keycode q)) + ((any-equal? key 'escape 'q) (close-window) (quit)))) |