This commit is contained in:
2026-02-25 13:52:38 +01:00
parent f4d93f437f
commit 994e21ebf5

View File

@@ -233,7 +233,7 @@
(define (ao-pause handle pause)
(if (eq? libao-async-mode 'ffi)
(ffi:ao_pause_async (ao-handle-async-player handle) pause)
(ffi:ao_pause_async (ao-handle-async-player handle) (if (eq? pause #f) 0 1))
(scm:ao_pause_async (ao-handle-async-player handle) pause)
))