mirror of
https://github.com/glfw/glfw.git
synced 2025-10-04 13:46:37 +00:00
Fix missing semicolon in the Cocoa implementation
This commit is contained in:
parent
f539f19b58
commit
b8df8258ea
@ -372,10 +372,10 @@ void _glfwPlatformGetMonitorWorkarea(_GLFWmonitor* monitor, int* xpos, int* ypos
|
||||
|
||||
NSRect frameRect = [[NSScreen resultScreen] visibleFrame];
|
||||
|
||||
*xpos = NSMinX(frameRect)
|
||||
*ypos = NSMinY(frameRect)
|
||||
*width = NSMaxX(frameRect)
|
||||
*height = NSMaxY(frameRect)
|
||||
*xpos = NSMinX(frameRect);
|
||||
*ypos = NSMinY(frameRect);
|
||||
*width = NSMaxX(frameRect);
|
||||
*height = NSMaxY(frameRect);
|
||||
}
|
||||
|
||||
GLFWvidmode* _glfwPlatformGetVideoModes(_GLFWmonitor* monitor, int* count)
|
||||
|
Loading…
Reference in New Issue
Block a user