]> git.jsancho.org Git - gacela.git/blobdiff - gacela.lisp
(no commit message)
[gacela.git] / gacela.lisp
index 8cd0da8271b25d7324862b454a0cd7054412be3f..6ad199f314623426210e823ef26e4555b20a1391 100644 (file)
                         :constructor constructor
                         :destructor destructor
                         :free-function free-function
-                        :time (if static -1 (SDL_GetTicks)))))
+                        :time (if static t (SDL_GetTicks)))))
 
   (defun get-resource (key)
     (let ((resource (gethash key resources-table)))
                      (setf (gethash key resources-table) resource)))
               (resource-plist resource)))))
 
+  (defun free-resource (key)
+    (funcall (resource-destructor (gethash key resources-table)))
+    (setf (resource-time (gethash key resources-table)) nil))
+
   (defun free-all-resources ()
-    (maphash (lambda (key res) (funcall (resource-free-function res) (resource-address res)))
-            resources-table)
-    (clrhash resources-table)))
+    (maphash (lambda (key res) (free-resource key)) resources-table)))
 
 
 ;;; Connection with the GUI