diff options
author | dec05eba <dec05eba@protonmail.com> | 2024-11-05 01:08:56 +0100 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2024-11-05 01:08:56 +0100 |
commit | aac9b9cde7540045507d3877f5a58c6253967ee2 (patch) | |
tree | f37f227a9ce27773d06bd687c4c54692ed8122d6 /src/egl.c | |
parent | 258f690a897a889a5d146a907078e2fb82a9eb1e (diff) |
Fix incorrect bitrate calculation for constant bitrate
Diffstat (limited to 'src/egl.c')
-rw-r--r-- | src/egl.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -223,7 +223,7 @@ static bool gsr_egl_create_window(gsr_egl *self, bool wayland) { if(wayland) { self->wayland.dpy = wl_display_connect(NULL); if(!self->wayland.dpy) { - fprintf(stderr, "gsr error: gsr_egl_create_window failed: wl_display_connect failed\n"); + fprintf(stderr, "gsr error: gsr_egl_create_window failed: failed to connect to the Wayland server\n"); goto fail; } |