diff --git a/src/video/emscripten/SDL_emscriptenmouse.c b/src/video/emscripten/SDL_emscriptenmouse.c index cdf83de6f6..a3553a2fed 100644 --- a/src/video/emscripten/SDL_emscriptenmouse.c +++ b/src/video/emscripten/SDL_emscriptenmouse.c @@ -172,7 +172,7 @@ static SDL_Cursor *Emscripten_CreateSystemCursor(SDL_SystemCursor id) cursor_name = "ns-resize"; break; case SDL_SYSTEM_CURSOR_SIZEALL: - cursor_name = "move"; + cursor_name = "all-scroll"; break; case SDL_SYSTEM_CURSOR_NO: cursor_name = "not-allowed"; diff --git a/src/video/wayland/SDL_waylandmouse.c b/src/video/wayland/SDL_waylandmouse.c index 4fb421de27..c1f372011a 100644 --- a/src/video/wayland/SDL_waylandmouse.c +++ b/src/video/wayland/SDL_waylandmouse.c @@ -271,7 +271,7 @@ static SDL_bool wayland_get_system_cursor(SDL_VideoData *vdata, Wayland_CursorDa legacyname = "sb_v_double_arrow"; break; case SDL_SYSTEM_CURSOR_SIZEALL: - cssname = "move"; + cssname = "all-scroll"; legacyname = "fleur"; break; case SDL_SYSTEM_CURSOR_NO: diff --git a/src/video/x11/SDL_x11mouse.c b/src/video/x11/SDL_x11mouse.c index 04dba64233..9469494020 100644 --- a/src/video/x11/SDL_x11mouse.c +++ b/src/video/x11/SDL_x11mouse.c @@ -270,7 +270,7 @@ static SDL_Cursor *X11_CreateSystemCursor(SDL_SystemCursor id) break; case SDL_SYSTEM_CURSOR_SIZEALL: shape = XC_fleur; - xcursorname = "move"; + xcursorname = "all-scroll"; break; case SDL_SYSTEM_CURSOR_NO: shape = XC_pirate;