summaryrefslogtreecommitdiff
path: root/2d/window.scm
diff options
context:
space:
mode:
Diffstat (limited to '2d/window.scm')
-rw-r--r--2d/window.scm2
1 files changed, 0 insertions, 2 deletions
diff --git a/2d/window.scm b/2d/window.scm
index 1d82a97..c62c7b6 100644
--- a/2d/window.scm
+++ b/2d/window.scm
@@ -73,7 +73,6 @@
;; Initialize everything
(SDL:enable-unicode #t)
(SDL:init 'everything)
- (SDL:open-audio)
;; Open SDL window in OpenGL mode.
(SDL:set-video-mode width height 24 flags)
(SDL:set-caption (window-title window))
@@ -92,7 +91,6 @@
(define (close-window)
"Close the currently open window and audio."
- (SDL:close-audio)
(SDL:quit))
(define-syntax-rule (with-window window body ...)