diff options
author | Colin Okay <colin@cicadas.surf> | 2022-07-19 06:45:16 -0500 |
---|---|---|
committer | Colin Okay <colin@cicadas.surf> | 2022-07-19 06:45:16 -0500 |
commit | 3c1df8b7807f772887dc3d85725059c4dbe75cca (patch) | |
tree | 9a02be7dff5b9e3e10c13b4f08f5fb487aca0d2c /src/interactive/button.lisp | |
parent | 3e5fb0e5ceb14475164b2a97187c0164ad465cc3 (diff) |
[rename] bitmap/image
Diffstat (limited to 'src/interactive/button.lisp')
-rw-r--r-- | src/interactive/button.lisp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interactive/button.lisp b/src/interactive/button.lisp index 0a15d79..7c94663 100644 --- a/src/interactive/button.lisp +++ b/src/interactive/button.lisp @@ -88,8 +88,8 @@ (make-instance 'button :on-press pressed :on-release released - :up (make-instance 'bitmap :texture (get-asset up)) - :down (make-instance 'bitmap :texture (get-asset down)))) + :up (make-instance 'image :texture (get-asset up)) + :down (make-instance 'image :texture (get-asset down)))) (defun make-text-button (font up down |