From 994e21ebf5732484dab4070a6541fdccb723f0c3 Mon Sep 17 00:00:00 2001 From: Hans Dijkema Date: Wed, 25 Feb 2026 13:52:38 +0100 Subject: [PATCH] - --- libao/libao.rkt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libao/libao.rkt b/libao/libao.rkt index e237dff..72e6224 100644 --- a/libao/libao.rkt +++ b/libao/libao.rkt @@ -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) ))