From bd7c9e467bed6ec5103925fc1fb0a9e3703d6e54 Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Wed, 1 Jul 2026 15:53:18 -0700 Subject: [PATCH] Removed helpCursor and cellCursor NSCursor selectors These don't actually exist and we don't have a better fallback. --- src/video/cocoa/SDL_cocoamouse.m | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/video/cocoa/SDL_cocoamouse.m b/src/video/cocoa/SDL_cocoamouse.m index 21a4f03f0f..1322a3a2c3 100644 --- a/src/video/cocoa/SDL_cocoamouse.m +++ b/src/video/cocoa/SDL_cocoamouse.m @@ -238,10 +238,10 @@ static SDL_Cursor *Cocoa_CreateSystemCursor(SDL_SystemCursor id) nscursor = [NSCursor contextualMenuCursor]; break; case SDL_SYSTEM_CURSOR_HELP: - nscursor = LoadHiddenSystemCursor(@"help", @selector(helpCursor)); + nscursor = LoadHiddenSystemCursor(@"help", @selector(arrowCursor)); break; case SDL_SYSTEM_CURSOR_CELL: - nscursor = LoadHiddenSystemCursor(@"cell", @selector(cellCursor)); + nscursor = LoadHiddenSystemCursor(@"cell", @selector(arrowCursor)); break; case SDL_SYSTEM_CURSOR_VERTICAL_TEXT: nscursor = [NSCursor IBeamCursorForVerticalLayout];