Cleanup of vibe code and replacement by self coded audio manager.

This commit is contained in:
2026-06-26 18:06:31 +02:00
parent fd8ff1ab1e
commit 14bf3a1da1
21 changed files with 43 additions and 1449 deletions
+3 -3
View File
@@ -8,7 +8,7 @@
(provide make-file-walker
make-file-admin
fw-add-filter
fw-add-step
os-path
)
@@ -138,11 +138,11 @@
f))
)
(define (fw-add-filter fw filter-func)
(define (fw-add-step fw step-func)
(λ ()
(let-values (((base-path path info) (fw)))
(if (eq? info #f)
(values #f #f #f)
(filter-func base-path path info))))
(step-func base-path path info))))
)