diff options
author | David Thompson <dthompson2@worcester.edu> | 2014-06-22 12:47:36 -0400 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2014-06-22 12:47:36 -0400 |
commit | df0f2a5f3f09394f1953abbc7e33e9a98204680e (patch) | |
tree | d24dbf0614cbb4e963d9824a270db300a38feee1 | |
parent | fb24cffc30952d1613f718ed00b113c1ff5c74c2 (diff) |
Fix window-size signal.
* 2d/window.scm (window-size): Fix improper use of vector literal.
-rw-r--r-- | 2d/window.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/2d/window.scm b/2d/window.scm index fe971c3..126d1a2 100644 --- a/2d/window.scm +++ b/2d/window.scm @@ -71,7 +71,7 @@ (hook->signal window-resize-hook #(0 0) (lambda (width height) - #(width height)))) + (vector width height)))) (define-signal window-width (signal-map vx window-size)) (define-signal window-height (signal-map vy window-size)) |