Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fixed comment style
  • Loading branch information
slouken committed Dec 27, 2016
1 parent 6d7da08 commit cb8685c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/joystick/SDL_gamecontroller.c
Expand Up @@ -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;
}
Expand Down

0 comments on commit cb8685c

Please sign in to comment.