Comment out unused egl priority for now because amd error is misleading

This commit is contained in:
dec05eba
2024-12-07 22:39:03 +01:00
parent 175ed79b06
commit 655fd3756b
2 changed files with 2 additions and 2 deletions

View File

@@ -276,7 +276,7 @@ int sound_device_get_by_name(SoundDevice *device, const char *device_name, const
int error = 0;
pa_handle *handle = pa_sound_device_new(nullptr, description, device_name, description, &ss, &buffer_attr, &error);
if(!handle) {
fprintf(stderr, "pa_sound_device_new() failed: %s. Audio input device %s might not be valid\n", pa_strerror(error), description);
fprintf(stderr, "pa_sound_device_new() failed: %s. Audio input device %s might not be valid\n", pa_strerror(error), device_name);
return -1;
}