diff options
author | Colin Okay <colin@cicadas.surf> | 2022-07-27 08:49:15 -0500 |
---|---|---|
committer | Colin Okay <colin@cicadas.surf> | 2022-07-27 08:49:15 -0500 |
commit | def70bc521a71b3bfa8d8b0bb982bbcd1743bd22 (patch) | |
tree | 0737d55c92934f6500c3e515a9a2b88ec9d326c8 /src/application.lisp | |
parent | 4ec779a31486fdedf038c35f975723b3abc04c8c (diff) |
[refactor] to get rid of finalizers. [add] pre-exit-hooks
Diffstat (limited to 'src/application.lisp')
-rw-r--r-- | src/application.lisp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/application.lisp b/src/application.lisp index 5b6e9ad..6869a56 100644 --- a/src/application.lisp +++ b/src/application.lisp @@ -96,7 +96,7 @@ (dolist (unit (application-scene app)) (drop-unit unit) (cleanup unit)) - (trivial-garbage:gc :full t)) + (pre-exit-hooks)) (defun run-perframe (app) "Runs all of the handlers objects listening for perframe events, if |