diff --git a/include/GL/glfw.h b/include/GL/glfw.h index 63e85609..443e3a83 100644 --- a/include/GL/glfw.h +++ b/include/GL/glfw.h @@ -358,9 +358,13 @@ extern "C" { typedef struct _GLFWwindow* GLFWwindow; /* The video mode structure used by glfwGetVideoModes() */ -typedef struct { - int width, height; - int redBits, blueBits, greenBits; +typedef struct +{ + int width; + int height; + int redBits; + int blueBits; + int greenBits; } GLFWvidmode; /* Function pointer types */