1
0
Fork 0
mirror of https://github.com/gwm17/glfw.git synced 2025-01-30 19:08:51 -05:00

Removed tab characters.

This commit is contained in:
Camilla Berglund 2015-04-10 13:17:27 +02:00
parent c5099ff407
commit 076d9311fa
2 changed files with 2 additions and 2 deletions

View File

@ -59,7 +59,7 @@ typedef void* id;
typedef struct _GLFWwindowNS typedef struct _GLFWwindowNS
{ {
id object; id object;
id delegate; id delegate;
id view; id view;
unsigned int modifierFlags; unsigned int modifierFlags;

View File

@ -107,7 +107,7 @@ static GLboolean enterFullscreenMode(_GLFWwindow* window)
// NOTE: The window is resized despite mode setting failure to make // NOTE: The window is resized despite mode setting failure to make
// glfwSetWindowSize more robust // glfwSetWindowSize more robust
[window->ns.object setFrame:[getScreen(window->monitor->ns.displayID) frame] [window->ns.object setFrame:[getScreen(window->monitor->ns.displayID) frame]
display:YES]; display:YES];
return status; return status;
} }