From c1048a3d20b75740d7c25915963cefe27fae53d4 Mon Sep 17 00:00:00 2001 From: dec05eba Date: Thu, 19 Dec 2024 00:42:33 +0100 Subject: Make '-w screen' capture the first monitor on nvidia x11 as well to make it work like amd, intel and nvidia wayland. Keep screen-direct for all monitors, that is gsync compatible --- src/egl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/egl.c') diff --git a/src/egl.c b/src/egl.c index 20537a2..249fe53 100644 --- a/src/egl.c +++ b/src/egl.c @@ -377,7 +377,7 @@ bool gsr_egl_load(gsr_egl *self, gsr_window *window, bool is_monitor_capture) { self->glx_library = dlopen("libGLX.so.0", RTLD_LAZY); self->gl_library = dlopen("libGL.so.1", RTLD_LAZY); - if(!self->egl_library) { + if(!self->gl_library) { fprintf(stderr, "gsr error: gsr_egl_load: failed to load libGL.so.1, error: %s\n", dlerror()); goto fail; } -- cgit v1.2.3