From 9b74623be9a4dc97bac905c69bea042df6e0b1ac Mon Sep 17 00:00:00 2001 From: Ethan Lee Date: Wed, 22 Sep 2021 13:52:36 -0400 Subject: [PATCH] wayland: Woops, forgot to assign cursor theme size... --- src/video/wayland/SDL_waylandmouse.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/video/wayland/SDL_waylandmouse.c b/src/video/wayland/SDL_waylandmouse.c index 23663ebe1..ead346ee2 100644 --- a/src/video/wayland/SDL_waylandmouse.c +++ b/src/video/wayland/SDL_waylandmouse.c @@ -95,6 +95,7 @@ wayland_get_system_cursor(SDL_VideoData *vdata, Wayland_CursorData *cdata, float return SDL_FALSE; } theme = WAYLAND_wl_cursor_theme_load(NULL, size, vdata->shm); + vdata->cursor_themes[vdata->num_cursor_themes].size = size; vdata->cursor_themes[vdata->num_cursor_themes++].theme = theme; }