From cb8685c022f587916f4a1b34e6be24877d560748 Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Tue, 27 Dec 2016 02:04:38 -0800 Subject: [PATCH] Fixed comment style --- src/joystick/SDL_gamecontroller.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/joystick/SDL_gamecontroller.c b/src/joystick/SDL_gamecontroller.c index 3fd1f11e8..140134af1 100644 --- a/src/joystick/SDL_gamecontroller.c +++ b/src/joystick/SDL_gamecontroller.c @@ -1279,7 +1279,7 @@ SDL_GameControllerGetAxis(SDL_GameController * gamecontroller, SDL_GameControlle } else { valid_output_range = (value >= binding->output.axis.axis_max && value <= binding->output.axis.axis_min); } - // If the value is zero, there might be another binding that makes it non-zero + /* If the value is zero, there might be another binding that makes it non-zero */ if (value != 0 && valid_output_range) { return (Sint16)value; }