From 5fd3fc71ded8726665e908b3782fd83d26539277 Mon Sep 17 00:00:00 2001 From: Camilla Berglund Date: Thu, 9 Sep 2010 19:44:43 +0200 Subject: [PATCH] Formatting. --- include/GL/glfw.h | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) 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 */