Removed helpCursor and cellCursor NSCursor selectors

These don't actually exist and we don't have a better fallback.
This commit is contained in:
Sam Lantinga
2026-07-01 15:53:18 -07:00
parent ceb4a7f1cb
commit bd7c9e467b

View File

@@ -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];