summaryrefslogtreecommitdiff
path: root/chickadee.scm
diff options
context:
space:
mode:
authorDavid Thompson <dthompson2@worcester.edu>2017-01-19 11:13:31 -0500
committerDavid Thompson <dthompson2@worcester.edu>2017-01-19 11:13:31 -0500
commita57fbeb9ca813a4aace2a9e538bd84db9aa4a804 (patch)
treeca6d79b1b698d69e28c2fccc4299c386867b2681 /chickadee.scm
parent7015cd493c5546b186ca419738ed7718d8e3a5ee (diff)
render: viewport: Use a non-black default clear color.
Diffstat (limited to 'chickadee.scm')
-rw-r--r--chickadee.scm6
1 files changed, 1 insertions, 5 deletions
diff --git a/chickadee.scm b/chickadee.scm
index 41a3d90..f918330 100644
--- a/chickadee.scm
+++ b/chickadee.scm
@@ -147,11 +147,7 @@
(with-window window
(let ((update-interval (round (/ 1000 update-hz)))
(default-viewport
- (make-viewport 0 0 window-width window-height
- ;; Just a fun color from the Dawnbringer
- ;; 32-color palette instead of boring old
- ;; black.
- #:clear-color (rgb #x45283c))))
+ (make-viewport 0 0 window-width window-height)))
(call-with-prompt game-loop-prompt-tag
(lambda ()
;; Catch SIGINT and kill the loop.