aboutsummaryrefslogtreecommitdiffhomepage
path: root/examples/02-image-transforms-and-events.lisp
diff options
context:
space:
mode:
authorcolin <colin@cicadas.surf>2024-12-10 07:11:02 -0800
committercolin <colin@cicadas.surf>2024-12-10 07:11:02 -0800
commit03cdbb6a15e130a012377ab8d54074b6864e3480 (patch)
treead8c5cfbd7262a5bf9555729e9b57b26457de027 /examples/02-image-transforms-and-events.lisp
parent2cbb8e4114c860e1774efd40d18661aee8ab2a72 (diff)
cleanup, examples use def
Diffstat (limited to 'examples/02-image-transforms-and-events.lisp')
-rw-r--r--examples/02-image-transforms-and-events.lisp17
1 files changed, 9 insertions, 8 deletions
diff --git a/examples/02-image-transforms-and-events.lisp b/examples/02-image-transforms-and-events.lisp
index 9e4710f..b81f788 100644
--- a/examples/02-image-transforms-and-events.lisp
+++ b/examples/02-image-transforms-and-events.lisp
@@ -131,14 +131,15 @@
(defun start ()
- (ww::start (make-instance 'image-transforms-etc
- :scale 2.0
- :fps 60
- :width 800
- :height 600
- :asset-root (merge-pathnames
- "examples/"
- (asdf:system-source-directory :wheelwork)))))
+ (ww::start
+ (make-instance 'image-transforms-etc
+ :scale 2.0
+ :fps 60
+ :width 800
+ :height 600
+ :asset-root (merge-pathnames
+ "examples/"
+ (asdf:system-source-directory :wheelwork)))))