Magic number removed.

This commit is contained in:
nightghost 2020-01-05 21:47:11 +03:00
parent 484c1775b0
commit 7e3a88ef63
1 changed files with 1 additions and 1 deletions

View File

@ -180,7 +180,7 @@ func (js *joystickState) getButton(joystick Joystick, button int) bool {
if js.buttons[joystick] == nil || button >= len(js.buttons[joystick]) || button < 0 {
return false
}
return js.buttons[joystick][byte(button)] == 1
return js.buttons[joystick][byte(button)] == glfw.Press
}
// Returns the value of a joystick axis, returning 0 if the button or joystick is invalid.