Use more GLFWbool

This commit is contained in:
Camilla Berglund
2015-12-10 17:10:05 +01:00
parent 2b52008405
commit 45efb935c5
12 changed files with 40 additions and 40 deletions
+2 -2
View File
@@ -36,7 +36,7 @@
//
typedef struct _GLFWjoystickLinux
{
int present;
GLFWbool present;
int fd;
float* axes;
int axisCount;
@@ -61,7 +61,7 @@ typedef struct _GLFWjoylistLinux
} _GLFWjoylistLinux;
int _glfwInitJoysticksLinux(void);
GLFWbool _glfwInitJoysticksLinux(void);
void _glfwTerminateJoysticksLinux(void);
#endif // _glfw3_linux_joystick_h_