From 06c332474a927e0f26174be2836c9a4c511cf8d8 Mon Sep 17 00:00:00 2001 From: Hans Dijkema Date: Fri, 3 Jul 2026 23:15:47 +0200 Subject: [PATCH] device bits in info hash. --- audio-placed-player.rkt | 1 + 1 file changed, 1 insertion(+) diff --git a/audio-placed-player.rkt b/audio-placed-player.rkt index e1860a5..b0ebd5a 100644 --- a/audio-placed-player.rkt +++ b/audio-placed-player.rkt @@ -427,6 +427,7 @@ (if (null? r) #f (cdar r)))) (hash-set! h 'state player-state) (hash-set! h 'valid-ao-handle (ao-valid? ao-h)) + (hash-set! h 'ao-device-bits (if (ao-valid? ao-h) (ao-device-bits ao-h) #f)) (hash-set! h 'duration (if (ao-valid? ao-h) (ao-music-duration ao-h) #f)) (hash-set! h 'at-second (if (ao-valid? ao-h) (ao-at-second ao-h) #f)) (hash-set! h 'at-music-id m-id)