From 52e47b5a53f462c67b2ecab3fb05112e580e94fa Mon Sep 17 00:00:00 2001 From: Camilla Berglund Date: Tue, 2 Aug 2016 15:39:01 +0200 Subject: [PATCH] Formatting --- src/cocoa_window.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cocoa_window.m b/src/cocoa_window.m index fab6f0a1..1db1f6a1 100644 --- a/src/cocoa_window.m +++ b/src/cocoa_window.m @@ -1540,7 +1540,7 @@ int _glfwPlatformCreateCursor(_GLFWcursor* cursor, memcpy([rep bitmapData], image->pixels, image->width * image->height * 4); native = [[NSImage alloc] initWithSize:NSMakeSize(image->width, image->height)]; - [native addRepresentation: rep]; + [native addRepresentation:rep]; cursor->ns.object = [[NSCursor alloc] initWithImage:native hotSpot:NSMakePoint(xhot, yhot)];