summaryrefslogtreecommitdiff
path: root/README.org
diff options
context:
space:
mode:
Diffstat (limited to 'README.org')
-rw-r--r--README.org6
1 files changed, 2 insertions, 4 deletions
diff --git a/README.org b/README.org
index 460abf6..491aade 100644
--- a/README.org
+++ b/README.org
@@ -21,8 +21,7 @@
Here is the simplest Guile-2d application (so far).
#+BEGIN_SRC scheme
- (use-modules ((sdl sdl) #:prefix SDL:)
- (figl gl)
+ (use-modules (figl gl)
(2d sprite)
(2d game-loop)
(2d window))
@@ -35,8 +34,7 @@
(display key) (newline)
(case key
;; Quit program when ESCAPE or Q is pressed.
- ;; For now we have to use the SDL keycodes, but not for long!
- ((SDLK_ESCAPE SDLK_q)
+ ((any-equal? key (keycode escape) (keycode q)
(close-window)
(quit))))