From ea8c7029a73b680a2996f7baf4e604582e7f6852 Mon Sep 17 00:00:00 2001 From: Camilla Berglund Date: Sun, 29 Jan 2012 15:41:06 +0100 Subject: [PATCH] Formatting. --- src/cocoa_joystick.m | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cocoa_joystick.m b/src/cocoa_joystick.m index 76c374b6..bf6e66bb 100644 --- a/src/cocoa_joystick.m +++ b/src/cocoa_joystick.m @@ -466,7 +466,7 @@ int _glfwPlatformGetJoystickParam(int joy, int param) if (!_glfwJoysticks[joy].present) { // TODO: Figure out if this is an error - return 0; + return GL_FALSE; } switch (param) @@ -484,7 +484,7 @@ int _glfwPlatformGetJoystickParam(int joy, int param) break; } - return 0; + return GL_FALSE; }