From 60585faf7951cffb6046280bdd5f91275fb97d65 Mon Sep 17 00:00:00 2001 From: Jack Jamison Date: Sun, 12 Oct 2025 00:07:02 -0400 Subject: input buffer and key repeat --- registry.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'registry.c') diff --git a/registry.c b/registry.c index d872e4c..8230339 100644 --- a/registry.c +++ b/registry.c @@ -22,13 +22,13 @@ void global(void *data, struct wl_registry *wl_registry, uint32_t name, const ch state->compositor = wl_registry_bind(wl_registry, name, &wl_compositor_interface, 1); } else if (!strcmp(interface, wl_seat_interface.name)) { - state->seat = wl_registry_bind(state->registry, name, &wl_seat_interface, 1); + state->seat = wl_registry_bind(state->registry, name, &wl_seat_interface, 4); } else if (!strcmp(interface, zwlr_layer_shell_v1_interface.name)) { - state->layer_shell = wl_registry_bind(wl_registry, name, &zwlr_layer_shell_v1_interface, version); + state->layer_shell = wl_registry_bind(wl_registry, name, &zwlr_layer_shell_v1_interface, 5); } else if (!strcmp(interface, wp_cursor_shape_manager_v1_interface.name)) { - state->cursor_shape_manager = wl_registry_bind( wl_registry, name, &wp_cursor_shape_manager_v1_interface, version); + state->cursor_shape_manager = wl_registry_bind( wl_registry, name, &wp_cursor_shape_manager_v1_interface, 1); } else { } -- cgit v1.2.3