diff options
author | Colin Okay <colin@cicadas.surf> | 2022-07-01 10:20:48 -0500 |
---|---|---|
committer | Colin Okay <colin@cicadas.surf> | 2022-07-01 10:20:48 -0500 |
commit | b46890f66a25e3f28bfb16e0b1fa8fabe8067556 (patch) | |
tree | 916f41455ca52c10936373920f82deb8ff356298 /src/wheelwork.lisp | |
parent | 867703d82c6e8b7a2b424845fcb30537061de45a (diff) |
[refactor] generating frameset accessors using macrolet
Diffstat (limited to 'src/wheelwork.lisp')
-rw-r--r-- | src/wheelwork.lisp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/wheelwork.lisp b/src/wheelwork.lisp index 849e2c7..b139f9d 100644 --- a/src/wheelwork.lisp +++ b/src/wheelwork.lisp @@ -254,11 +254,7 @@ ASSET-ARGS is a plist to pass to make-instance for the given resource. :path (uiop:merge-pathnames* asset-id (asset-root app)) asset-args))))) -(defun fps (&optional (app *application*)) - (application-fps app)) -(defun (setf fps) (new-val &optional (app *application*)) - (setf (application-fps app) new-val)) |