aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2024-12-07 22:39:03 +0100
committerdec05eba <dec05eba@protonmail.com>2024-12-07 22:39:03 +0100
commit655fd3756be4507030aac1d497e579cfc0070f3c (patch)
treeedff7308f3da98e5b97bd7e22817a0f2f704f73a
parent175ed79b06ecb5615eff1df26e932cf644d78300 (diff)
Comment out unused egl priority for now because amd error is misleading
-rw-r--r--src/egl.c2
-rw-r--r--src/sound.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/egl.c b/src/egl.c
index 315cbab..4e7c95b 100644
--- a/src/egl.c
+++ b/src/egl.c
@@ -216,7 +216,7 @@ static bool gsr_egl_create_window(gsr_egl *self, bool wayland) {
const int32_t ctxattr[] = {
EGL_CONTEXT_CLIENT_VERSION, 2,
- EGL_CONTEXT_PRIORITY_LEVEL_IMG, EGL_CONTEXT_PRIORITY_HIGH_IMG, /* requires cap_sys_nice, ignored otherwise */
+ //EGL_CONTEXT_PRIORITY_LEVEL_IMG, EGL_CONTEXT_PRIORITY_HIGH_IMG, /* requires cap_sys_nice, ignored otherwise */
EGL_NONE, EGL_NONE
};
diff --git a/src/sound.cpp b/src/sound.cpp
index d72187c..3359d3c 100644
--- a/src/sound.cpp
+++ b/src/sound.cpp
@@ -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;
}