diff options
author | David Thompson <dthompson2@worcester.edu> | 2017-01-19 09:43:34 -0500 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2017-01-19 09:43:34 -0500 |
commit | 7015cd493c5546b186ca419738ed7718d8e3a5ee (patch) | |
tree | e814ab49ab6638d84a3e127d1021a670ec339257 | |
parent | d89629e400a570122a57cc0cb7243ad40cc0a954 (diff) |
render: texture: Quick code style fix.
-rw-r--r-- | chickadee/render/texture.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chickadee/render/texture.scm b/chickadee/render/texture.scm index bdddc22..20f58a6 100644 --- a/chickadee/render/texture.scm +++ b/chickadee/render/texture.scm @@ -186,7 +186,7 @@ the given MIN-FILTER and MAG-FILTER." #:wrap-s wrap-s #:wrap-t wrap-t))))) -(define* (load-image file #:optional #:key +(define* (load-image file #:key (min-filter 'nearest) (mag-filter 'nearest) (wrap-s 'repeat) |