Skip to content

Commit 1e3a7d9

Browse files
authored
miniaudio: Disable worklets by default (#8694)
Worklets are disabled by default and may require some flags to be compiled: https://github.com/mackron/miniaudio/blob/f40cf03f80cdb7e741d43e53b7e706e8c1394bcf/CHANGES.md?plain=1#L54
1 parent 12308c2 commit 1e3a7d9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/m/miniaudio/xmake.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ package("miniaudio")
3232
add_configs("sse2", {description = "Enable SSE2 optimizations", default = true, type = "boolean"})
3333
add_configs("threading", {description = "Enable the threading API", default = true, type = "boolean"})
3434
add_configs("wav", {description = "Enable the builtin WAV decoder and encoder", default = true, type = "boolean"})
35-
add_configs("worklets", {description = "Enable AudioWorklets when targeting web", default = true, type = "boolean"})
35+
add_configs("worklets", {description = "Enable AudioWorklets when targeting web", default = false, type = "boolean"})
3636

3737
if is_plat("iphoneos") then
3838
add_frameworks("AudioToolbox", "AVFoundation", "CoreFoundation", "Foundation")

0 commit comments

Comments
 (0)