Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
Mac: CGMakePoint -> CGPointMake in previous change.
  • Loading branch information
jorgenpt committed Jul 15, 2013
1 parent 9244c60 commit b1c4754
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/video/cocoa/SDL_cocoamouse.m
Expand Up @@ -201,7 +201,7 @@ + (NSCursor *)invisibleCursor
Cocoa_WarpMouse(SDL_Window * window, int x, int y)
{
SDL_Mouse *mouse = SDL_GetMouse();
CGPoint point = CGMakePoint(x, y);
CGPoint point = CGPointMake(x, y);

if (!(window->flags & SDL_WINDOW_FULLSCREEN))
{
Expand Down

0 comments on commit b1c4754

Please sign in to comment.