From 1b31c1c466f3aa38285b5a081a75a65a78c9cf0c Mon Sep 17 00:00:00 2001 From: Anthony Samms Date: Mon, 15 Sep 2025 21:24:19 -0400 Subject: [PATCH] Update audio.py --- libs/audio.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/audio.py b/libs/audio.py index 76624c7..de9e6c6 100644 --- a/libs/audio.py +++ b/libs/audio.py @@ -107,7 +107,7 @@ ffi.cdef(""" # gcc -shared -fPIC -o libaudio.so audio.c -lportaudio -lsndfile -lpthread try: if platform.system() == "Windows": - lib = ffi.dlopen("./libaudio.dll") # or "libaudio.dll" if that's the compiled name + lib = ffi.dlopen("libaudio.dll") # or "libaudio.dll" if that's the compiled name elif platform.system() == "Darwin": lib = ffi.dlopen("./libaudio.dylib") else: # Assume Linux/Unix