diff options
author | David Thompson <dthompson2@worcester.edu> | 2021-10-08 06:24:33 -0400 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2021-10-08 06:24:33 -0400 |
commit | 2102926762704c13bf14f0b9d4f1f4b48c12013f (patch) | |
tree | 23fd3e47157a999e58211073b94d7157a7b89547 /examples | |
parent | 13c94b0929135243b8c83890b98baa9b1370a579 (diff) |
examples: game-controller: Update call to color constructor.
Diffstat (limited to 'examples')
-rw-r--r-- | examples/game-controller.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/game-controller.scm b/examples/game-controller.scm index 44070ac..f166939 100644 --- a/examples/game-controller.scm +++ b/examples/game-controller.scm @@ -56,7 +56,7 @@ (sprite-batch-add! batch p #:texture-region (texture-atlas-ref atlas tile) - #:tint (color 1.0 1.0 1.0 alpha))))) + #:tint (make-color 1.0 1.0 1.0 alpha))))) trigger-icons) (for-each (match-lambda (((and (or 'left-stick 'right-stick) button) |