From fc0cd31f2f55eeb49ee44578e0474d6481db5b8f Mon Sep 17 00:00:00 2001 From: Headshotnoby Date: Sun, 20 Jun 2021 11:26:37 -0400 Subject: [PATCH] always check if using ctypes... --- audio.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/audio.py b/audio.py index c11ebf3..cc54ed6 100644 --- a/audio.py +++ b/audio.py @@ -59,7 +59,7 @@ def getdevices(): """ Get BASS devices """ - info = BASS_DEVICEINFO() + info = BASS_DEVICEINFO() if use_ctypes else dll.BASS_DEVICEINFO() ind = 0 devices = [] while dll.BASS_GetDeviceInfo(ind, ctypes.c_voidp(ctypes.addressof(info)) if use_ctypes else info):