summaryrefslogtreecommitdiff
path: root/sdl2/video.scm
diff options
context:
space:
mode:
authorDavid Thompson <dthompson2@worcester.edu>2020-12-05 12:46:03 -0500
committerDavid Thompson <dthompson2@worcester.edu>2020-12-05 12:46:03 -0500
commit4872ad930ab09536cc19567126e0ed3631ac2d34 (patch)
treefdf0b462c9eedfe4de47b91dedc6eb66a4185fd5 /sdl2/video.scm
parent82e4b15dbcadb8c7819d6b899d30aca7b8eb1be7 (diff)
video: Change set-window-position! argument list.
Diffstat (limited to 'sdl2/video.scm')
-rw-r--r--sdl2/video.scm9
1 files changed, 3 insertions, 6 deletions
diff --git a/sdl2/video.scm b/sdl2/video.scm
index d26eb62..1c08495 100644
--- a/sdl2/video.scm
+++ b/sdl2/video.scm
@@ -225,12 +225,9 @@ the border."
(ffi:sdl-set-window-title (unwrap-window window)
(string->pointer title)))
-(define (set-window-position! window position)
- "Set the position of WINDOW to POSITION, a two-element list of (x,y)
-coordinates measured in pixels."
- (match position
- ((x y)
- (ffi:sdl-set-window-position (unwrap-window window) x y))))
+(define (set-window-position! window x y)
+ "Set the position of WINDOW to (X, Y)."
+ (ffi:sdl-set-window-position (unwrap-window window) x y))
(define (set-window-size! window size)
"Set the dimensions of WINDOW to SIZE, a two-element list