From 1509e9b375e0c9574fc36c34b8bf2b2e5880c418 Mon Sep 17 00:00:00 2001 From: David Reid Date: Thu, 15 Jan 2026 10:45:11 +1000 Subject: [PATCH] Fix an error with the `--enumerate-only` option in deviceio test. --- tests/deviceio/deviceio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/deviceio/deviceio.c b/tests/deviceio/deviceio.c index b4808d5b..1b0d5680 100644 --- a/tests/deviceio/deviceio.c +++ b/tests/deviceio/deviceio.c @@ -496,7 +496,7 @@ int main(int argc, char** argv) int captureDeviceIndex = -1; const char* pFilePath = NULL; /* Input or output file path, depending on the mode. */ ma_bool32 enumerate = MA_TRUE; - ma_bool32 onlyEnumerate = MA_TRUE; + ma_bool32 onlyEnumerate = MA_FALSE; ma_bool32 interactive = MA_TRUE; ma_device_backend_info backendInfo; ma_bool32 printDetailedInfo = MA_FALSE;